This repository has been archived by the owner on Aug 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 2.25 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
{
"name": "@feathersjs/rest-client",
"description": "REST client services for different Ajax libraries",
"version": "1.4.1",
"homepage": "https://github.com/feathersjs/rest-client",
"main": "lib/index.js",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/rest-client.git"
},
"author": {
"name": "Feathers contributors",
"email": "[email protected]",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/rest-client/issues"
},
"engines": {
"node": ">= 6.0.0"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --tag pre --access public",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/**/*.js test/**/*.js --fix",
"mocha": "mocha --opts mocha.opts",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"test": "npm run lint && npm run coverage"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/commons": "^2.0.0",
"@feathersjs/errors": "^3.0.0",
"qs": "^6.5.0"
},
"devDependencies": {
"@angular/common": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/http": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@feathersjs/express": "^1.0.0",
"@feathersjs/feathers": "^3.0.0",
"axios": "^0.18.0",
"body-parser": "^1.17.2",
"feathers-memory": "^2.0.0",
"istanbul": "^1.1.0-alpha.1",
"jquery": "^3.2.1",
"jsdom": "^12.0.0",
"mocha": "^5.0.0",
"node-fetch": "^2.0.0",
"request": "^2.81.0",
"rxjs": "^6.1.0",
"semistandard": "^12.0.0",
"shx": "^0.3.0",
"superagent": "^3.5.2",
"uglify-js": "^3.0.24",
"xhr2": "^0.1.4"
}
}