-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 1.67 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
{
"name": "pseudo-worker",
"version": "1.3.0",
"description": "Tiny and mostly spec-compliant WebWorker polyfill",
"main": "index.js",
"repository": "https://github.com/nolanlawson/pseudo-worker.git",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf dist && mkdirp dist && browserify -s PseudoWorker -p bundle-collapser/plugin . > dist/pseudo-worker.js && browserify -s PseudoWorker -p bundle-collapser/plugin polyfill.js > dist/pseudo-worker.polyfill.js && uglifyjs -mc < dist/pseudo-worker.js > dist/pseudo-worker.min.js && uglifyjs -mc < dist/pseudo-worker.polyfill.js > dist/pseudo-worker.polyfill.min.js",
"test": "mocha ./test/test.js",
"test-browser": "zuul ./test/test.js",
"test-local": "zuul ./test/test.js --local 9000 --no-coverage",
"lint": "jshint -c .jshintrc *.js",
"coverage": "istanbul cover ./node_modules/.bin/_mocha ./test/test.js && istanbul check-coverage --lines 100 --function 100 --statements 100 --branches 100",
"report-coverage": "npm run coverage && istanbul-coveralls"
},
"files": [
"index.js",
"polyfill.js",
"dist"
],
"keywords": [],
"author": "Nolan Lawson <[email protected]>",
"license": "Apache-2.0",
"devDependencies": {
"assert": "^1.3.0",
"browserify": "^13.0.1",
"bundle-collapser": "^1.2.1",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.3",
"jshint": "^2.9.1",
"mkdirp": "^0.5.1",
"mocha": "^2.3.4",
"pouchdb-promise": "0.0.0",
"rimraf": "^2.5.3",
"ua-parser-js": "^0.7.10",
"uglify-js": "^2.7.0",
"zuul": "^3.9.0",
"zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
},
"browser": {
"path": false,
"fs": false
}
}