-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 2.47 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
{
"name": "compose",
"version": "0.1.0",
"description": "",
"keywords": [],
"license": "Apache-2.0",
"files": [
"dist/src"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"jest": {
"roots": [
"src",
"test"
],
"testEnvironment": "node",
"testPathIgnorePatterns": [
"test/files",
"node_modules"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"collectCoverageFrom": [
"src/api/**/*"
],
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 100,
"lines": 95,
"statements": -10
}
},
"coverageReporters": [
"json-summary"
]
},
"scripts": {
"build": "npm-run-all clean lint check tsc copy-assets typedoc apidoc",
"check": "gts check",
"clean": "gts clean",
"copy-assets": "ts-node tools/copyAssets",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"dev:start": "npm-run-all build start",
"lint": "gts fix && tslint -c tslint.json -p tsconfig.json --fix",
"prepare": "npm run build",
"start": "node .",
"pretest": "npm run build",
"test": "jest --detectOpenHandles --forceExit && npm run test:badge",
"test:badge": "node_modules/.bin/jest-badges-readme",
"tsc": "tsc -p tsconfig.json",
"typedoc": "typedoc",
"apidoc": "raml2html api.raml -o ./dist/src/docs/api.html"
},
"dependencies": {
"adm-zip": "^0.4.13",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"jest-coverage-badges": "^1.1.2",
"multer": "^1.4.2",
"typedoc": "^0.15.0",
"uuid": "^3.3.3",
"zip-js": "0.0.2"
},
"devDependencies": {
"@olavoparno/jest-badges-readme": "^1.3.7",
"@types/adm-zip": "^0.4.32",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^24.0.18",
"@types/mock-fs": "^3.6.30",
"@types/multer": "^1.3.9",
"@types/node": "^10.14.15",
"@types/rimraf": "^2.0.3",
"@types/shelljs": "^0.8.5",
"@types/supertest": "^2.0.8",
"@types/uuid": "^3.4.5",
"fs-extra": "^8.1.0",
"gts": "^1.1.0",
"jest": "^24.9.0",
"mock-fs": "^4.10.1",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"raml2html": "^7.5.0",
"rimraf": "^3.0.0",
"shelljs": "^0.8.3",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "~3.5.0"
}
}