forked from stoically/temporary-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "tmpcontainers",
"version": "0.0.0",
"description": "Temporary Containers",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"clean": "rm -rf web-ext-artifacts .web-ext-artifacts .cache dist",
"build": "npm run lint && npm run test && npm run test:functional && npm run build:parcel && npm run build:cp && npm run build:webext && npm run lint:addon && ncu",
"build:parcel": "npm run clean && parcel build src/ui/options.html src/ui/popup.html --no-minify --no-source-maps",
"build:sign": "node build-sign.js && npm run lint && npm run test && npm run test:functional && npm run build:parcel && npm run build:cp && npm run build:webext:sign && git checkout -- src/manifest.json && ncu",
"build:webext": "web-ext build -s dist",
"build:webext:sign": "web-ext sign --channel unlisted -s dist",
"build:cp": "cp README.md LICENSE dist",
"lint": "eslint src/**/*.{js,vue}",
"lint:addon": "addons-linter web-ext-artifacts/temporary_containers-*.zip",
"test": "nyc --reporter=html --reporter=text mocha --reporter=progress ./test/setup.js test/*.test.js --timeout 60000",
"test:watch": "mocha ./test/setup.js test/*.test.js -b --reporter=progress --watch --inspect",
"test:watch:verbose": "mocha ./test/setup.js test/*.test.js -b --reporter=spec --tmp-debug --watch --inspect",
"test:functional": "npm run build:parcel && mocha ./test/functional/*.test.js --timeout 10000",
"check:dependencies": "ncu",
"watch": "rm -rf dist && parcel src/ui/options.html src/ui/popup.html --hmr-hostname=localhost"
},
"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": "^4.3.0",
"glob-to-regexp": "^0.4.1",
"jquery": "^3.4.1",
"jquery-address": "^1.6.0",
"p-queue": "^3.0.0",
"psl": "^1.2.0",
"semantic-ui": "^2.4.2",
"semver-compare": "^1.0.0",
"sortablejs": "^1.10.0-rc3",
"vue": "^2.6.10",
"vuedraggable": "^2.23.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@vue/component-compiler-utils": "^3.0.0",
"addons-linter": "^1.10.1",
"babel-eslint": "^10.0.2",
"chai": "^4.2.0",
"coveralls": "^3.0.5",
"eslint": "^6.0.1",
"eslint-plugin-vue": "^5.2.3",
"husky": "^3.0.0",
"mocha": "^6.1.4",
"npm-check-updates": "^3.1.20",
"nyc": "^14.1.1",
"parcel-bundler": "^1.12.3",
"parcel-plugin-html-externals": "^0.1.2",
"parcel-plugin-static-files-copy": "^2.2.0",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.10",
"web-ext": "^3.1.0",
"webextensions-geckodriver": "^0.6.0",
"webextensions-jsdom": "^0.17.0"
},
"browserslist": [
"Firefox >= 60"
],
"staticFiles": {
"staticPath": [
"src",
{
"staticPath": "src/ui/vendor",
"staticOutDir": "vendor"
}
],
"watcherGlob": "**",
"excludeGlob": [
"ui",
"ui/**"
],
"globOptions": {
"dot": true
}
},
"externals": {
"/vendor/**/*": false
},
"posthtml": {
"recognizeSelfClosing": true
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
},
"private": true,
"nyc": {
"exclude": [
"test/**/*.js"
]
}
}