-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.86 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.86 KB
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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:one": "yarn build -- --scope",
"build:dep": "lerna run build --include-dependencies --stream",
"test": "lerna run test",
"coverage": "codecov",
"clean": "lerna clean",
"publish": "lerna run build && lerna publish",
"publish:ci": "lerna run tsc && lerna publish --canary --yes",
"prettier": "prettier --write packages/**/*.ts"
},
"devDependencies": {
"@koex/onerror": "^0.0.3",
"@types/co-body": "^5.1.0",
"@types/compressible": "^2.0.0",
"@types/cookies": "^0.7.4",
"@types/debug": "^0.0.31",
"@types/jest": "^24.0.19",
"@types/koa": "^2.0.49",
"@types/koa-compose": "^3.2.4",
"@types/lodash": "^4.14.134",
"@types/mime-types": "^2.1.0",
"@types/ms": "^0.7.30",
"@types/mz": "^0.0.32",
"@types/node": "^12.7.5",
"@types/node-fetch": "^2.5.2",
"@types/statuses": "^1.5.0",
"@types/supertest": "^2.0.8",
"@zcorky/delay": "^1.0.1",
"chai": "^4.1.2",
"chai-spies": "^1.0.0",
"codecov": "^3.5.0",
"coveralls": "^3.0.2",
"debug": "^4.1.0",
"global": "^4.3.2",
"husky": "^3.0.9",
"jest": "^24.9.0",
"koa": "^2.8.1",
"lerna": "^4.0.0",
"lerna-changelog": "^0.8.2",
"lint-staged": "^10.2.11",
"lodash": "^4.17.11",
"nyc": "^13.1.0",
"prettier": "^2.0.5",
"rimraf": "^2.6.2",
"should": "^13.2.3",
"source-map-support": "^0.5.9",
"supertest": "^4.0.2",
"ts-jest": "^24.1.0",
"ts-node": "^7.0.1",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test",
"pre-push": "npm run"
}
},
"lint-staged": {
"packages/**/*.ts": "prettier --write"
},
"dependencies": {
"@zcorky/tsconfig": "^0.0.3",
"@znode/fs": "^0.1.4"
}
}