-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
49 lines (49 loc) · 1.36 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
{
"name": "simple-web-worker",
"version": "1.2.0",
"description": "An utility to simplify the use of web workers.",
"main": "dist/sww.min.js",
"scripts": {
"preintegration": "NODE_ENV=production rollup --config src/tests/integration/config/rollup.sworker.js",
"integration": "testcafe firefox src/tests/integration/*.test.js",
"test": "jest",
"build": "yarn test && yarn integration && NODE_ENV=production rollup -c",
"dev": "rollup -c -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/israelss/simple-web-worker.git"
},
"keywords": [
"Web",
"Worker",
"Simple"
],
"author": "Israel Sant'Anna <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/israelss/simple-web-worker/issues"
},
"homepage": "https://github.com/israelss/simple-web-worker#readme",
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.4.0",
"jest": "^20.0.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-filesize": "^1.3.2",
"rollup-plugin-uglify": "^1.0.2",
"rollup-watch": "^3.2.2",
"standard": "^10.0.2",
"testcafe": "^0.15.0"
},
"jest": {
"testMatch": [
"**/tests/unit/**/*.test.js"
],
"collectCoverageFrom": [
"src/*.js"
]
}
}