-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.09 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.09 KB
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
{
"name": "howard",
"version": "1.0.2",
"description": "A wrapper for isomorphic fetch",
"main": "index.js",
"scripts": {
"gendocs": "jsdoc src/index.js -d docs",
"clean": "rimraf lib",
"test": "cross-env BABEL_ENV=commonjs mocha --async-only --compilers js:babel-register --recursive",
"test:watch": "npm test -- --watch",
"test:browser": "mocha-puppeteer test",
"test:examples": "node examples/",
"cover": "cross-env BABEL_ENV=commonjs istanbul cover _mocha -- --compilers js:babel-register --recursive",
"lint": "eslint src test",
"build:test": "cross-env BABEL_ENV=commonjs babel test --out-dir ./built-test",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir ./",
"prepublish": "npm run clean && npm run lint && npm run test && npm run build",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samrocksc/howard.git"
},
"keywords": [
"ducks",
"isomorphic-fetch",
"rest",
"promises",
"api"
],
"author": "Sam Clark <samrocksc@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/samrocksc/howard/issues"
},
"homepage": "https://github.com/samrocksc/howard#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.14.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0",
"coveralls": "^2.13.1",
"cross-env": "^3.0.0",
"eslint": "^3.6.0",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"expect": "^21.1.0",
"fetch-mock": "^5.12.2",
"istanbul": "^1.0.0-alpha",
"jsdoc": "^3.5.5",
"lasso-babel-transform": "^1.0.1",
"mocha": "^3.0.2",
"mocha-lcov-reporter": "^1.3.0",
"mocha-puppeteer": "^0.8.5",
"read-blob": "^1.1.0",
"rimraf": "^2.5.4"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"query-string": "^5.0.0"
}
}