-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
74 lines (74 loc) · 1.86 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
{
"name": "@koopjs/cli",
"version": "1.1.10",
"description": "CLI tool to build Koop projects",
"main": "src/index.js",
"scripts": {
"test": "npm run test:cli && npm run test:template",
"test:template": "cross-env SUPPRESS_NO_CONFIG_WARNING=true mocha \"src/template/components/**/test/**/*.test.js\"",
"test:cli": "cross-env SUPPRESS_NO_CONFIG_WARNING=true mocha \"test/**/*.test.js\"",
"ncu": "node scripts/ncu.js",
"preversion": "npm test",
"postversion": "npm publish --access public && git push origin --all; git push origin --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/koopjs/koop-cli.git"
},
"keywords": [
"koop",
"cli"
],
"author": {
"name": "Haoliang Yu",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/koopjs/koop-cli/issues"
},
"homepage": "https://github.com/koopjs/koop-cli#readme",
"dependencies": {
"@koopjs/koop-core": "^10.1.0",
"dargs": "^7.0.0",
"easy-table": "^1.2.0",
"execa": "^5.1.1",
"fs-extra": "^11.1.1",
"klaw-sync": "^6.0.0",
"latest-version": "^5.1.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.12",
"nodemon": "^3.0.1",
"recast": "^0.23.4",
"yargs": "^17.7.2",
"yargs-parser": "^21.1.1"
},
"bin": {
"koop": "src/cli/index.js"
},
"devDependencies": {
"chai": "^4.3.7",
"config": "^3.3.9",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"mocha": "^10.2.0",
"npm-check-updates": "^16.10.18",
"proxyquire": "^2.1.3",
"standard": "^17.1.0",
"supertest": "^6.3.3"
},
"lint-staged": {
"*.js": "standard --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"volta": {
"npm": "8.19.4",
"node": "16.20.2"
}
}