-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.44 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
{
"name": "fetch-readablestream",
"version": "0.2.0",
"main": "lib/entry.js",
"jsnext:main": "src/index.js",
"repository": "https://github.com/jonnyreeves/fetch-readablestream",
"license": "MIT",
"keywords": [
"xhr",
"fetch",
"polyfill",
"readablestream"
],
"scripts": {
"prepare": "npm run clean && npm run build:lib && ./post-build.sh",
"clean": "rm -rf build/* && rm -rf dist/*",
"build:integ": "mkdir -p build && $BROWSERIFY_CMD test/integ/*.spec.js -o build/integration-tests.js --debug -t [ babelify ]",
"build:lib": "mkdir -p lib && babel --out-dir lib src",
"lint": "eslint .",
"test": "npm run lint && npm run test:integ",
"test:integ": "BROWSERIFY_CMD=browserify npm run build:integ && ./run-karma.sh --single-run",
"watch": "(BROWSERIFY_CMD=watchify npm run build:integ &) && ./run-karma.sh --auto-watch",
"release": "./release.sh ${npm_package_version}"
},
"devDependencies": {
"abortcontroller-polyfill": "^1.1.9",
"babel-cli": "^6.11.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"cookie": "^0.3.1",
"eslint": "^3.3.1",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^1.7.1",
"karma-jasmine": "^1.1.2",
"karma-sauce-launcher": "^1.2.0",
"text-encoding": "^0.6.0",
"url": "^0.11.0",
"watchify": "^3.7.0",
"web-streams-polyfill": "^1.3.0"
}
}