forked from devour-js/devour-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.48 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
{
"name": "devour-client",
"version": "1.2.0",
"description": "A lightweight, framework agnostic, flexible JSON API client",
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rm -rf lib/ && ./node_modules/.bin/babel -d lib/ src/",
"watch": "./node_modules/.bin/babel --watch -d lib/ src/",
"test": "./node_modules/.bin/standard && ./node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twg/devour.git"
},
"keywords": [
"Devour",
"JSON-API",
"API",
"API",
"Client"
],
"author": [
"Emerson Lackey",
"Josh Zucker"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/twg/devour/issues"
},
"babel": {
"presets": [
"es2015"
]
},
"homepage": "https://github.com/twg/devour#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"expect.js": "^0.3.1",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.4.5",
"standard": "^7.0.1"
},
"dependencies": {
"axios": "^0.11.0",
"es6-promise": "^3.1.2",
"lodash": "^4.11.2",
"minilog": "^3.0.0",
"pluralize": "^1.2.1",
"qs": "^6.1.0"
}
}