This repository has been archived by the owner on Apr 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 2.94 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "@donmahallem/trapeze-api-types",
"version": "2.3.0",
"description": "Api Types and helper for TrapezeApi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"keywords": [
"api",
"types"
],
"scripts": {
"test": "mocha",
"start": "npm run build:live",
"build:live": "nodemon",
"build": "tsc",
"build:doc": "node ./node_modules/typedoc/bin/typedoc --out ./tt2/ --mode modules --exclude /**/index ./src/",
"test-ci_old": "nyc ts-mocha -p tsconfig.json -- --opts mocha.opts",
"test-ci": "nyc npm run test",
"lint": "tslint -c tslint.json -p tsconfig-lint.json src/**/*.ts",
"lint-fix": "tslint --fix -c tslint.json -p tsconfig-lint.json src/**/*.ts",
"docs": "typedoc --options typedoc.json",
"test:lint": "npm run lint",
"test:build": "npm run build",
"test:unit": "npm run test-ci",
"test:docs": "npm run docs"
},
"homepage": "https://donmahallem.github.io/TrapezeApiTypes/",
"author": {
"name": "donmahallem",
"email": "donmahallem@users.noreply.github.com",
"url": "https://github.com/donmahallem"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/donmahallem/TrapezeApiTypes/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/donmahallem/TrapezeApiTypes.git"
},
"engines": {
"node": ">=8.0.0"
},
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"lib": [
"es2017",
"es7",
"es6",
"dom"
],
"declaration": true,
"outDir": "./dist/",
"baseUrl": "./src/",
"strict": true,
"esModuleInterop": true
},
"devDependencies": {
"@types/chai": "~4.2.9",
"@types/mocha": "~7.0.1",
"@types/node": "~13.7.6",
"@types/sinon": "~7.5.2",
"chai": "~4.2.0",
"highlight.js": "~9.18.1",
"mocha": "~7.1.0",
"nodemon": "~2.0.2",
"nyc": "~15.0.0",
"sinon": "~9.0.0",
"ts-node": "~8.6.2",
"tslint": "~6.0.0",
"typedoc": "~0.16.11",
"typescript": "~3.8.2"
},
"nyc": {
"include": [
"src/*.ts",
"src/**/*.ts"
],
"exclude": [
"typings",
"src/**/*.spec.ts",
"**/*.d.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html",
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true,
"all": true
},
"dependencies": {
"jsonschema": "~1.2.5"
},
"files": [
"dist/*",
"src/*"
],
"publishConfig": {
"access": "public"
}
}