-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.77 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
{
"name": "typed-web-workers",
"version": "4.0.0",
"description": "Create web workers with type safety",
"main": "lib/index.iife.js",
"module": "lib/index.esm.js",
"browser": "lib/index.iife.js",
"typings": "lib/index.d.ts",
"sideEffects": false,
"scripts": {
"commit": "npx git-cz",
"prepublishOnly": "npm run build",
"build": "rimraf lib/ && rollup --config",
"test": "karma start karma.conf.js",
"test:headless": "HEADLESS=true karma start karma.conf.js",
"test:dev": "HEADLESS=true DEV=true npm run test:headless",
"lint": "prettier \"./{src,test}/**.ts\" --write"
},
"keywords": [
"web",
"worker",
"typescript"
],
"author": "anderscan",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.8.3",
"@babel/preset-typescript": "^7.8.3",
"@types/jasmine": "^3.5.2",
"codecov": "^3.6.4",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.1.0",
"fast-check": "^2.3.0",
"jasmine": "^3.5.0",
"jasmine-core": "^3.5.0",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-firefox-launcher": "^2.1.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^5.0.0",
"prettier": "^2.0.1",
"rimraf": "^3.0.0",
"rollup": "^2.0.3",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.0.3"
},
"repository": "AndersCan/typed-web-workers",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}