-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "robotgrid",
"version": "0.0.1",
"description": "Coding Challenge app",
"main": "index.html",
"scripts": {
"start": "http-server -a localhost -p 8080 -o http://localhost:8080/index.html",
"build": "browserify --debug src/index.js -o public/bundle.js -t [ babelify --presets [ es2015 ] ]",
"test": "jest"
},
"author": "Neil Kennedy",
"license": "ISC",
"devDependencies": {
"babel-jest": "^18.0.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"browserify": "^14.0.0",
"eslint": "^3.14.1",
"http-server": "^0.9.0",
"jest": "^18.1.0"
},
"babel": {
"presets": [
"es2015"
]
},
"eslintConfig": {
"env": {
"browser": true,
"commonjs": true,
"es6": true,
"node": true,
"jest": true
},
"parserOptions": {
"ecmaVersion": 6,
"ecmaFeatures": {
"jsx": true
},
"sourceType": "module"
},
"rules": {
"no-const-assign": "warn",
"no-this-before-super": "warn",
"no-undef": "warn",
"no-unreachable": "warn",
"no-unused-vars": "warn",
"constructor-super": "warn",
"valid-typeof": "warn"
}
},
"dependencies": {}
}