-
Notifications
You must be signed in to change notification settings - Fork 89
/
package.json
68 lines (68 loc) · 1.74 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
{
"name": "devour-client",
"version": "3.1.5",
"description": "A lightweight, framework agnostic, flexible JSON API client",
"main": "lib/",
"scripts": {
"prepublish": "npm run compile",
"prepublish-windows": "npm run compile:windows",
"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/ && babel -d lib/ src/",
"compile:windows": "rd /s /q \"lib/\" && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"autofix": "standard --fix",
"test": "standard && mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devour-js/devour-client.git"
},
"keywords": [
"Devour",
"JSON-API",
"API",
"API",
"Client"
],
"author": [
"Emerson Lackey",
"Josh Zucker"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/devour-js/devour-client/issues"
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"mocha": {
"recursive": true,
"require": "@babel/register"
},
"homepage": "https://github.com/devour-js/devour-client#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/register": "^7.4.4",
"expect.js": "^0.3.1",
"mocha": "^9.1.3",
"nyc": "^17.0.0",
"sinon": "^1.17.4",
"standard": "^16.0.4"
},
"dependencies": {
"axios": "^1.1.3",
"es6-promise": ">=3.1.2 <5.0.0",
"lodash": "^4.17.15",
"minilog": "^3.0.0",
"pluralize": "^1.2.1",
"qs": "^6.1.0"
}
}