forked from ladjs/frisbee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.97 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "frisbee",
"description":
"Stripe-inspired API wrapper around WHATWG's fetch() method for making simple HTTP requests (alternative to superagent, request, axios)",
"version": "1.5.1",
"author": "Nick Baugh <[email protected]>",
"bugs": {
"url": "https://github.com/joinspontaneous/frisbee/issues",
"email": "[email protected]"
},
"dependencies": {
"babel-runtime": "^6.9.2",
"buffer": "^4.6.0",
"caseless": "^0.11.0",
"qs": "^6.2.0"
},
"devDependencies": {
"@earnest/eslint-config-es7": "^2.1.1",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.1",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.8.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"body-parser": "^1.15.1",
"bower": "^1.7.9",
"browserify": "^13.0.1",
"chai": "^3.5.0",
"cors": "^2.7.1",
"coveralls": "^2.11.9",
"dirty-chai": "^1.2.2",
"es6-promise": "^3.2.1",
"eslint": "^2.11.1",
"eslint-plugin-babel": "^3.2.0",
"eslint-plugin-mocha": "~2.0.0",
"express": "^4.13.4",
"isomorphic-fetch": "^2.2.1",
"isparta": "^4.0.0",
"istanbul": "^0.4.3",
"jsdom": "^9.2.1",
"jshint": "^2.9.2",
"mocha": "^2.5.3",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0",
"source-map-support": "^0.4.0"
},
"engines": {
"node": "6.x||7.x||8.x"
},
"homepage": "https://github.com/joinspontaneous/frisbee",
"keywords": [
"api",
"boilerplate",
"fetch",
"frisbee",
"github",
"glue",
"helper",
"polyfill",
"react",
"react-native",
"rest",
"rest",
"restful",
"restful",
"router",
"stripe",
"superagent",
"superagent-defaults",
"whatwg",
"whatwg-fetch",
"wrapper"
],
"license": "MIT",
"main": "lib/frisbee.js",
"repository": {
"type": "git",
"url": "https://github.com/joinspontaneous/frisbee"
},
"scripts": {
"analyze-coverage":
"NODE_ENV=test node_modules/.bin/babel-node node_modules/.bin/isparta cover node_modules/.bin/_mocha",
"browserify":
"node_modules/.bin/browserify -t babelify test/unit/browser.js > test/unit/browser.bundled.js",
"build": "node_modules/.bin/babel src --modules common --out-dir lib",
"check-coverage":
"node_modules/.bin/babel-node node_modules/.bin/istanbul check-coverage",
"coverage":
"npm run lint && npm run build && npm run analyze-coverage && npm run check-coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage/",
"lint": "node_modules/.bin/eslint .",
"prepublish": "npm run build",
"test":
"npm run lint && npm run browserify && NODE_ENV=test _mocha --compilers js:babel-core/register",
"watch":
"node_modules/.bin/babel src --watch --modules common --out-dir lib --source-maps"
}
}