forked from stoically/temporary-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
145 lines (145 loc) · 4.5 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "tmpcontainers",
"version": "0.0.0",
"description": "Temporary Containers",
"scripts": {
"clean": "rimraf web-ext-artifacts .web-ext-artifacts dist",
"build": "run-s clean build:webpack",
"build:webpack": "webpack",
"beta": "run-s build beta:*",
"beta:manifest-update-url": "ts-node manifest-update-url.ts",
"beta:sign": "web-ext sign --channel unlisted -s dist",
"lint": "run-p lint:*",
"lint:eslint": "eslint *.js src/**/*.'{ts,js,vue}' test/**/*.ts",
"lint:tsc": "tsc -p tsconfig.lint.json",
"webext:build": "web-ext build -s dist",
"webext:lint": "web-ext lint -s dist",
"format": "prettier --write '{*,src/**/*,test/**/*}.{html,css,json,yml,md}'",
"test": "nyc --reporter=html --reporter=text ts-mocha --paths -p tsconfig.json test/*.test.ts",
"test:functional": "ts-mocha ./test/functional/*.test.ts --timeout 10000",
"watch:test": "ts-mocha --paths -p tsconfig.json test/*.test.ts --watch",
"watch:test:verbose": "ts-mocha --paths -p tsconfig.json test/*.test.ts --tmp-debug --watch",
"check:dependencies": "ncu",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"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",
"p-queue": "6.3.0",
"psl": "1.8.0",
"vue": "2.6.11",
"vuedraggable": "2.23.2"
},
"peerDependencies": {
"jquery": "3.5.0",
"jquery-address": "1.6.0",
"semantic-ui": "2.4.2",
"sortablejs": "1.10.2"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/firefox-webext-browser": "github:stoically/DefinitelyTyped#firefox-webext-browser-dist",
"@types/jquery": "^3.3.35",
"@types/jquery.address": "^1.5.29",
"@types/jsdom": "^16.2.1",
"@types/mocha": "^7.0.2",
"@types/psl": "^1.1.0",
"@types/semantic-ui": "^2.2.7",
"@types/semantic-ui-dropdown": "github:stoically/DefinitelyTyped#semantic-ui-dropdown-dist",
"@types/semantic-ui-form": "github:stoically/DefinitelyTyped#semantic-ui-form-dist",
"@types/sinon": "^9.0.0",
"@types/sinon-chai": "^3.2.4",
"@types/sinon-chrome": "^2.2.7",
"@typescript-eslint/eslint-plugin": "^2.28.0",
"@typescript-eslint/parser": "^2.28.0",
"@vue/component-compiler-utils": "^3.1.2",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"chai-deep-match": "^1.2.1",
"copy-webpack-plugin": "^5.1.1",
"copyfiles": "^2.2.0",
"coveralls": "^3.0.11",
"css-loader": "^3.5.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"html-webpack-plugin": "^4.2.0",
"husky": "^4.2.5",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"lint-staged": "^10.1.3",
"mocha": "^7.1.1",
"npm-check-updates": "^4.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"prettier": "2.0.4",
"rimraf": "^3.0.2",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"ts-loader": "^7.0.0",
"ts-mocha": "^7.0.0",
"ts-node": "^8.8.2",
"tsconfig-paths": "^3.9.0",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"typescript": "^3.8.3",
"vue-hot-reload-api": "^2.3.4",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"vue-typed-mixins": "^0.2.0",
"web-ext": "^4.1.0",
"webextensions-api-fake": "^1.2.0",
"webextensions-geckodriver": "^0.6.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"browserslist": [
"Firefox >= 67"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{ts,js,vue}": [
"eslint --fix"
],
"*.{html,css,json,yml,md}": [
"prettier --write"
]
},
"private": true,
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"exclude": [
"test/**/*.ts"
]
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true
},
"mocha": {
"bail": true,
"reporter": "progress",
"extension": "ts"
}
}