-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.36 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
55
56
57
58
59
60
61
62
{
"name": "adserver",
"version": "1.0.0",
"description": "implementation of Kargo coding test",
"main": "index.js",
"author": "peterkingswell@gmail.com",
"license": "MIT",
"scripts": {
"start": "gulp",
"test": "gulp test",
"watch": "gulp watch",
"build": "gulp build",
"clean": "gulp clean"
},
"dependencies": {
"express": "^4.14.0",
"lodash": "^4.17.0",
"minimatch": "^3.0.3",
"mysql": "^2.12.0",
"vinyl-fs": "^2.4.4"
},
"devDependencies": {
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"del": "^2.2.2",
"eslint": "^3.10.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "2.2.3",
"eslint-plugin-react": "^6.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-mocha": "^3.0.1",
"mocha": "^3.1.2",
"node-inspector": "^0.12.8"
},
"babel": {
"presets": [
"latest"
]
},
"eslintConfig": {
"extends": "airbnb",
"plugins": [
"import"
],
"rules": {
"no-console": 0,
"curly": 2,
"prefer-template": 0,
"max-len": 0,
"key-spacing": 0,
"object-curly-spacing": 0,
"no-multi-spaces": 0,
"no-unused-vars": 1,
"spaced-comment": 0,
"no-trailing-spaces": 0,
"indent": 0
}
}
}