-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1018 Bytes
/
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
{
"name": "bp-node-tool",
"version": "1.0.0",
"description": "NodeJS bolierplate",
"main": "index.js",
"private": true,
"scripts": {
"start": "node ./src",
"dev": "nodemon ./src/index.js --ext js",
"eslint": "eslint src/ --ext .js || true",
"eslint:fix": "eslint src/ --ext .js --fix || true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/restuta/bp-node.git"
},
"author": "Anton Vynogradenko <[email protected]> (http://restuta.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/restuta/bp-node/issues"
},
"homepage": "https://github.com/restuta/bp-node#readme",
"devDependencies": {
"eslint": "^4.11.0",
"eslint-plugin-prettier": "^2.3.1",
"nodemon": "^1.12.1",
"prettier": "^1.8.2"
},
"dependencies": {
"axios": "^0.17.1",
"chalk": "^2.3.0",
"cli-progress": "^2.1.0",
"command-line-args": "^5.0.2",
"fsevents": "^1.2.4",
"left-pad": "^1.3.0",
"parse-link-header": "^1.0.1"
}
}