-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathpackage.json
52 lines (52 loc) · 1.16 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
{
"scripts": {
"lint": "eslint . --quiet",
"pretest": "npm run lint --silent",
"test": "meteor test --once --driver-package dispatch:mocha-phantomjs",
"test:watch": "TEST_WATCH=1 meteor test --driver-package dispatch:mocha-phantomjs"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"allowImportExportEverywhere": true
},
"env": {
"browser": true,
"jquery": true
},
"globals": {
"currentError": true,
"popoverTemplate": true,
"dropDownTemplate": true,
"replyError": true,
"moment": false,
"Iron": false,
"UniHTML": false,
"interact": false,
"SimpleSchema": false,
"SyncedCron": false
},
"plugins": [],
"extends": [
"airbnb"
],
"settings": {
"import/resolver": "meteor"
},
"rules": {
"no-plusplus": 0,
"consistent-return": 1,
"prefer-template": 0,
"no-underscore-dangle": 1,
"no-param-reassign": 0,
"max-len": 1,
"no-alert": 1,
"no-mixed-operators": 1
}
},
"dependencies": {
"bcrypt": "^1.0.2",
"chai": "^3.5.0",
"jquery": "^3.3.1"
}
}