forked from oisdk/team-software-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.51 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "frontend",
"version": "0.0.1",
"description": "frontend for the monopoly app",
"repository": "https://github.com/oisdk/team-software-project.git",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/eslint app/ && jest --coverage",
"start": "if [ -d dist ]; then rm -r dist; fi && grunt static",
"fix": "./node_modules/.bin/eslint --fix app/"
},
"author": "",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-jest": "22.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babel-register": "6.26.0",
"babelify": "8.0.0",
"browserify": "15.2.0",
"eslint": "4.15.0",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"grunt": "1.0.1",
"grunt-browserify": "5.2.0",
"grunt-cli": "1.2.0",
"grunt-contrib-copy": "1.0.0",
"grunt-contrib-cssmin": "2.2.1",
"grunt-contrib-uglify": "3.3.0",
"jest-cli": "22.4.0"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 0,
"functions": 0,
"lines": 0,
"statements": 0
}
},
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
}
},
"eslintConfig": {
"extends": "airbnb-base",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"env": {
"browser": true
},
"overrides": [
{
"files": [
"*.test.js"
],
"env": {
"jest": true
}
}
],
"rules": {
"func-names": [
"error",
"as-needed"
],
"no-var": [
"error"
],
"no-invalid-this": [
"error"
],
"no-useless-call": [
"error"
],
"array-bracket-newline": [
"error",
{
"multiline": true
}
],
"array-bracket-spacing": [
"error",
"never"
],
"array-element-newline": [
"error",
{
"multiline": true
}
],
"indent": [
"error",
4
],
"object-curly-spacing": [
"error",
"never"
],
"no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
],
"import/prefer-default-export": "off",
"no-use-before-define": [
"error",
{"functions": false}
]
}
},
"dependencies": {
}
}