-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.19 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
{
"brand": "cigarettes",
"version": "0.1.0",
"description": "a npm package to learn node and help me stop smoking",
"main": "index.js",
"scripts": {
"build": "webpack --display-modules",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint -f table ./",
"fix": "eslint -f table --fix ./"
},
"keywords": [
"node",
"cigarettes"
],
"repository": "git+https://github.com/kensongzhu/cigarettes.git",
"author": "fanxy-speedy <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kensongzhu/cigarettes/issues"
},
"homepage": "https://github.com/kensongzhu/cigarettes#readme",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"clean-webpack-plugin": "^0.1.19",
"eslint": "^4.18.2",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"prettier": "^1.11.1",
"uglifyjs-webpack-plugin": "^1.2.3",
"webpack": "^4.5.0",
"webpack-cli": "^2.0.12"
},
"private": false,
"dependencies": {
"babel-runtime": "^6.26.0"
},
"engines": { "node" : ">=7.6.0" }
}