-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.38 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": "stipulate",
"version": "0.2.0",
"description": "A module extending the Fetch API with some useful default error handling and hooks.",
"main": "cjs/stipulate.js",
"module": "src/stipulate.js",
"scripts": {
"compile-cjs": "scripts/compile-common-js.sh",
"coveralls": "cat coverage/lcov.info | node_modules/.bin/coveralls",
"prepare": "npm run compile-cjs",
"test": "babel-node node_modules/.bin/isparta cover --root src/ --report text --report lcov --report html node_modules/.bin/_mocha --"
},
"repository": {
"type": "git",
"url": "https://github.com/yola/stipulate.git"
},
"keywords": [
"fetch"
],
"author": "Yola Engineering <engineering@yola.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yola/stipulate/issues"
},
"homepage": "https://github.com/yola/stipulate",
"devDependencies": {
"babel-cli": "~6.11.4",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-es2015-modules-commonjs": "~6.24.1",
"babel-preset-es2015": "~6.9.0",
"babel-register": "~6.11.6",
"chai": "~3.5.0",
"chai-as-promised": "~5.3.0",
"coveralls": "~2.11.9",
"isparta": "~4.0.0",
"jsgreat": "~0.1.8",
"mocha": "~2.5.3"
},
"dependencies": {
"lodash": "4.x",
"url-join": "^4.0.1"
},
"browserify": {
"transform": [
[
"babelify"
]
]
}
}