-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 896 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 896 Bytes
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
{
"name": "@f5devcentral/atg-storage",
"version": "1.3.10",
"author": "F5 Networks",
"license": "Apache-2.0",
"main": "index.js",
"scripts": {
"lint": "eslint src test",
"test": "mocha",
"coverage": "nyc npm test"
},
"files": [
"index.js",
"src"
],
"eslintConfig": {
"extends": "@f5devcentral/eslint-config-f5-atg",
"rules": {
"arrow-parens": [
"error",
"as-needed",
{
"requireForBlockBody": true
}
]
}
},
"dependencies": {
"@f5devcentral/atg-shared-utilities": "^0.6.0"
},
"devDependencies": {
"@f5devcentral/eslint-config-f5-atg": "^0.1.6",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^8.4.1",
"mocha": "^6.2.3",
"mock-fs": "^4.14.0",
"nock": "10.0.0",
"nyc": "^15.1.0",
"sinon": "^12.0.1",
"stryker-cli": "^1.0.2"
}
}