-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.84 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
{
"name": "web-streams-polyfill",
"version": "1.3.2",
"description": "Web Streams, based on the WHATWG spec reference implementation",
"main": "dist/polyfill.js",
"browser": "dist/polyfill.min.js",
"jsnext:main": "index.es6.js",
"scripts": {
"test": "(cd spec/reference-implementation ; npm install && npm run test && cp ../../run-web-platform-tests-on-bundle.js ./ && node --expose_gc run-web-platform-tests-on-bundle.js && rm ./run-web-platform-tests-on-bundle.js)",
"bundle": "npm-run-all bundle:*",
"bundle:no-min": "browserify index.es6.js -d -s default -t [ babelify ] | derequire | exorcist ./dist/polyfill.js.map > ./dist/polyfill.js",
"bundle:min": "browserify -g uglifyify index.es6.js -d -i ./spec/reference-implementation/lib/utils.js -s default -t [ babelify --plugins babel-plugin-unassert uglifyify ] | derequire | exorcist ./dist/polyfill.min.js.map > ./dist/polyfill.min.js",
"build": "npm run bundle",
"prebuild": "git submodule update --init",
"prepublish": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/creatorrr/web-stream-polyfill.git"
},
"keywords": [
"streams",
"whatwg",
"polyfill"
],
"author": "Diwank Singh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/creatorrr/web-streams-polyfill/issues"
},
"homepage": "https://github.com/creatorrr/web-streams-polyfill#readme",
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-plugin-unassert": "^2.1.1",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.6.0",
"babelify": "^7.3.0",
"browserify": "^13.0.1",
"derequire": "^2.0.3",
"exorcist": "^0.4.0",
"npm-run-all": "^2.3.0",
"uglifyify": "^3.0.2",
"yarn": "^0.17.0"
},
"dependencies": {}
}