-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
45 lines (45 loc) · 1.33 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
{
"name": "updatescanner",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git://github.com/sneakypete81/updatescanner.git"
},
"dependencies": {
"dialog-polyfill": "0.5.0",
"idb-file-storage": "0.1.0",
"jquery": "3.4.1",
"jstree": "3.3.8"
},
"devDependencies": {
"@octokit/rest": "^17.11.0",
"eslint": "^6.8.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-jsdoc": "^24.0.6",
"geckodriver": "^1.20.0",
"jasmine-core": "^3.6.0",
"jasmine-data-provider": "^2.2.0",
"jasmine-jquery": "^2.1.1",
"karma": "^5.2.2",
"karma-firefox-launcher": "^1.3.0",
"karma-jasmine": "^3.3.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-notify-reporter": "^1.2.0",
"rimraf": "^3.0.2",
"web-ext": "^4.3.0"
},
"config": {},
"scripts": {
"all": "node scripts/build.js && node scripts/lint.js && node scripts/test.js",
"ci": "node scripts/build.js && node scripts/lint.js && node scripts/test.js",
"build": "node scripts/build.js",
"lint": "node scripts/lint.js",
"test": "node scripts/test.js",
"test:watch": "node scripts/test-watch.js",
"test:func": "node scripts/test-func.js",
"run": "node scripts/run.js",
"sign": "node scripts/sign.js",
"bump": "node scripts/bump.js",
"release": "node scripts/release.js"
}
}