-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "DecisionTree",
"version": "1.0.0",
"description": "Decision Tree to decide which activities a smoker has to go through w.r.t to his past history & smoking habits",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": ". scripts/build.sh",
"devBuild": ". scripts/dev.build.sh",
"lint": "eslint src",
"lintfix": "eslint --fix src",
"prepublishOnly": "npm run lint && npm run build"
},
"author": "Pawan Wagh",
"license": "MIT",
"dependencies": {
"is": "^3.3.0",
"lodash": "^2.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.5.0",
"babel-preset-stage-1": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^5.7.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}