-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.3 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
{
"name": "feathers-opossum",
"description": "A service plugin for opossum",
"version": "1.0.2",
"homepage": "https://github.com/sajov/feathers-opossum",
"keywords": [
"feathers",
"feathers-plugin",
"opossum"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sajov/feathers-opossum/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/sajov/feathers-opossum.git"
},
"author": {
"name": "sajov"
},
"contributors": [],
"bugs": {
"url": "https://github.com/sajov/feathers-opossum/issues"
},
"engines": {
"node": ">= 6"
},
"main": "lib/",
"types": "types",
"scripts": {
"publish": "git push origin --tags && 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",
"lint": "semistandard --fix",
"mocha": "mocha --opts mocha.opts -S",
"mocha:watch": "mocha --opts mocha.opts -S --watch lib node_modules/@feathersjs/adapter-tests/lib",
"test": "npm run lint && npm run dtslint && npm run coverage",
"example": "babel-node example/index",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts",
"travis": "node_modules/.bin/istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --colors --reporter spec test/",
"start": "nodemon example -w example -w lib -w test",
"benchmark:fetch": "ab -n 1000 -c 10 http://localhost:3030/fetch/TWINX2048-3200PRO",
"benchmark:undici": "ab -n 1000 -c 10 http://localhost:3030/undici/TWINX2048-3200PRO"
},
"semistandard": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"opossum": "^5.0.0"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^4.5.2",
"@feathersjs/express": "^4.5.4",
"@feathersjs/feathers": "^4.5.3",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.1.0",
"feathers-memory": "^4.1.0",
"istanbul": "^1.1.0-alpha.1",
"loud-rejection": "^2.2.0",
"mocha": "^7.2.0",
"semistandard": "^14.2.0"
}
}