-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
32 lines (32 loc) · 922 Bytes
/
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
{
"name": "jsonpipe",
"version": "2.2.0",
"description": "AJAX utility for consuming chunked JSON responses",
"main": "./lib/jsonpipe.js",
"typings": "types.d.ts",
"scripts": {
"test": "gulp test",
"coveralls": "gulp test-cov && gulp report-coveralls && rm -rf coverage && rm -rf lib-cov"
},
"repository": {
"type": "git",
"url": "git@github.com:eBay/jsonpipe.git"
},
"author": "Senthil Padmanabhan <https://twitter.com/senthil_hi>",
"license": "MIT",
"devDependencies": {
"gulp": "~3.8.11",
"gulp-browserify": "~0.5.1",
"gulp-clean": "^0.3.1",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.3",
"gulp-istanbul-report": "0.0.1",
"gulp-mocha-phantomjs": "^0.10.1",
"gulp-replace": "^0.5.4",
"mocha-lcov-reporter": "^1.0.0",
"mocha-phantomjs-istanbul": "0.0.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}