forked from stoically/temporary-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.89 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
{
"name": "tmpcontainers",
"version": "0.0.0",
"description": "Temporary Containers",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rm -rf web-ext-artifacts && cp README.md LICENSE src && npm run lint && npm test && web-ext build -s src && addons-linter web-ext-artifacts/temporary_containers-*.zip && ncu",
"build-sign": "rm -rf web-ext-artifacts && cp README.md LICENSE src && node build-sign.js && npm run lint && npm test && web-ext sign --channel unlisted -s src && git checkout -- src/manifest.json && ncu",
"lint": "eslint src",
"test": "nyc --reporter=html --reporter=text mocha --reporter=dot ./test/setup.js test/*.test.js --timeout 60000",
"test-watch": "mocha ./test/setup.js test/*.test.js --watch --tmp-debug",
"test-functional": "mocha ./test/functional/*.test.js --timeout 10000",
"check-dependencies": "ncu"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stoically/temporary-containers.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/stoically/temporary-containers/issues"
},
"homepage": "https://github.com/stoically/temporary-containers#readme",
"dependencies": {
"delay": "^2.0.0",
"glob-to-regexp": "^0.4.0",
"jquery": "^3.3.1",
"jquery-address": "^1.6.0",
"p-queue": "^2.3.0",
"psl": "^1.1.25",
"semantic-ui": "^2.3.0",
"semver-compare": "^1.0.0"
},
"devDependencies": {
"addons-linter": "^0.41.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.18.1",
"mocha": "^5.0.1",
"npm-check-updates": "^2.14.1",
"nyc": "^11.4.1",
"sinon": "^4.4.2",
"sinon-chai": "^3.0.0",
"web-ext": "stoically/web-ext#sign-addon-channel",
"webextensions-geckodriver": "^0.3.1",
"webextensions-jsdom": "^0.11.0"
},
"private": true,
"nyc": {
"exclude": [
"test/**/*.js"
]
}
}