-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"private": true,
"workspaces": [
"packages/*"
],
"espoirVersion": 0,
"contributors": [
"Zhendong Yang antoineyang99@gmail.com (https://github.com/AntoineYANG)"
],
"scripts": {
"test": "node ./packages/espoir-cli/bin/index.js",
"build:bin": "cd bin && tsc || exit 1",
"test:bin": "npm run build:bin && cd bin && jest --coverage --verbose || exit 1",
"dev:bin": "nodemon -w ./bin/**/*.ts -e ts --exec \"npm run build:bin\"",
"build": "cross-env NODE_ENV=production node tasks/build.js",
"publish": "node tasks/publish.js",
"lint": "node tasks/lint.js"
},
"devDependencies": {
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/mkdirp": "^1.0.2",
"@types/needle": "^2.5.2",
"@types/node": "^16.11.7",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"chalk": "^4.1.2",
"commander": "^8.3.0",
"compressing": "^1.5.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"jest-config": "^27.3.1",
"listr2": "^3.13.4",
"mkdirp": "^1.0.4",
"needle": "^3.0.0",
"nodemon": "^2.0.15",
"semver": "^7.3.5",
"ts-jest": "^27.0.7",
"ts-loader": "^9.2.6",
"typescript": "^4.5.2",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"espoir-cli": "^5.0.1"
},
"bundledDependencies": [
"espoir-cli"
]
}