-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 KB
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
{
"name": "worker-wrapper",
"version": "1.3.2",
"dependencies": {},
"typings": "dist/js/index.d.ts",
"main": "dist/worker-wrapper.js",
"repository": {
"type": "git",
"url": "https://github.com/tsigel/worker-wrapper"
},
"keywords": [
"typescript",
"worker",
"web-worker",
"background",
"typed"
],
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^12.0.10",
"expect.js": "^0.3.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.4",
"mocha": "^10.2.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run clean && node_modules/.bin/webpack --config webpack.conf.js",
"clean": "rm -rf dist",
"pretest": "node_modules/.bin/tsc karma.conf.ts",
"test": "node_modules/karma/bin/karma start --singleRun",
"test-debug": "npm run pretest && node_modules/karma/bin/karma start --singleRun false --autoWatch true",
"preversion": "npm run test",
"postversion": "git push origin HEAD && git push origin HEAD --tags && npm publish"
}
}