forked from jspreddy/node-cli-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.4 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.4 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
{
"name": "node-cli-boilerplate",
"version": "2.1.0",
"scripts": {
"start": "npm run build && npm run link && npm run build:watch",
"lint": "npx eslint ./src",
"test": "npx jest",
"test:watch": "npx jest --watch",
"test:cover": "npx jest --coverage",
"test:cover:open": "open ./coverage/lcov-report/index.html",
"test:cover:watch": "npx jest --watch --coverage",
"build": "npx babel src --delete-dir-on-start --out-dir lib",
"build:watch": "npx nodemon --exec npm run build",
"clean": "rm -rf ./lib",
"link": "npm link",
"unlink": "npm unlink",
"setup": "npm run build && npm run link",
"remove": "npm run unlink && npm run clean"
},
"author": "jspreddy",
"license": "ISC",
"description": "This is a boilerplate for a cli application.",
"dependencies": {
"commander": "^5.0.0",
"lodash": "^4.17.19"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-jest": "^25.2.3",
"babel-preset-minify": "^0.5.1",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jest": "^23.8.2",
"jest": "^25.2.3",
"nodemon": "^2.0.2"
},
"nodemonConfig": {
"ignore": [
"lib/*",
"coverage/*"
]
},
"bin": {
"loki": "./lib/commands/loki/loki.js"
}
}