-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "chunked-request",
"version": "0.7.1",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": "https://github.com/jonnyreeves/chunked-request",
"license": "MIT",
"keywords": [
"request",
"chunked",
"transfer",
"comet",
"xhr",
"fetch"
],
"scripts": {
"prepublish": "npm run clean && npm run build:lib",
"clean": "rm -rf build/*",
"build:integ": "webpack",
"build:lib": "mkdir -p lib && babel --out-dir lib src",
"lint": "eslint .",
"test": "npm run lint && npm run test:integ",
"test:integ": "npm run build:integ && ./run-karma.sh --single-run",
"release": "./release.sh ${npm_package_version}"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-preset-es2015": "^6.13.2",
"cookie": "^0.3.1",
"eslint": "^3.3.1",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-sauce-launcher": "^1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"lodash": "^4.15.0",
"text-encoding": "^0.6.0",
"url": "^0.11.0",
"webpack": "^2.2.1"
},
"dependencies": {
"browser-headers": "^0.3.1"
}
}