-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 899 Bytes
/
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
{
"name": "clam-common",
"description": "CLAM Common Code",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest"
},
"devDependencies": {
"@babel/preset-env": "^7.8.7",
"@bugsnag/js": "^6.5.2",
"@types/jest": "^24.0.0",
"babel": "^6.23.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"firebase": "^7.24.0",
"jest": "^24.0.0"
},
"engines": {
"node": ">=10"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "./",
"coverageReporters": [
"json"
]
},
"private": true,
"standard": {
"env": [
"jest"
]
}
}