-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@maartennnn/cli-builder",
"version": "2.3.0",
"description": "A cli builder tool",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=testing mocha --exit",
"test:watch": "NODE_ENV=testing mocha -w",
"publish": "npm publish --access public --scope=@maartennnn",
"jsdoc2md": "jsdoc2md src/index.js 2>&1| tee API.md",
"jsdoc": "jsdoc src/index.js"
},
"bin": {
"cli-builder": "bin/example-cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maarteNNNN/cli-builder.git"
},
"bugs": {
"url": "https://github.com/maarteNNNN/cli-builder/issues"
},
"homepage": "https://github.com/maarteNNNN/cli-builder#readme",
"keywords": [
"cli",
"command"
],
"author": "Maarten Coppens",
"license": "MIT",
"dependencies": {
"fs-extra": "^10.1.0",
"inquirer": "^8.2.4",
"minimist": "^1.2.6"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-like": "^1.1.1",
"chai-things": "^0.2.0",
"jsdoc-to-markdown": "^7.1.1",
"mocha": "^10.0.0"
}
}