forked from feathersjs-ecosystem/feathers-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.37 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
{
"name": "feathers-rest",
"description": "The Feathers REST API provider",
"version": "1.7.0",
"homepage": "https://github.com/feathersjs/feathers-rest",
"main": "lib/",
"types": [
"./index.d.ts",
"./client.d.ts"
],
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-rest.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-rest/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "rimraf -rf lib/ && babel -d lib/ src/",
"watch": "babel --watch -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"directories": {
"lib": "lib"
},
"browser": {
"./lib/index": "./lib/client/index"
},
"greenkeeper": {
"ignore": "jsdom"
},
"dependencies": {
"debug": "^2.2.0",
"feathers-commons": "^0.8.0",
"feathers-errors": "^2.0.1",
"qs": "^6.0.1"
},
"devDependencies": {
"axios": "^0.15.3",
"babel-cli": "^6.3.17",
"babel-core": "^6.3.26",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-transform-object-assign": "^6.3.13",
"babel-preset-es2015": "^6.3.13",
"body-parser": "^1.14.2",
"eslint-if-supported": "^1.0.1",
"feathers": "^2.0.0-pre.1",
"feathers-memory": "^1.0.0",
"istanbul": "^1.1.0-alpha.1",
"jsdom": "8.1.0",
"mocha": "^3.0.0",
"node-fetch": "^1.3.3",
"request": "^2.67.0",
"rimraf": "^2.5.4",
"semistandard": "^9.1.0",
"superagent": "^3.0.0"
}
}