-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.66 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
{
"name": "feathers-envhelpers",
"description": "Convenience functions get the current node environment",
"version": "0.6.2",
"homepage": "https://github.com/crijke/feathers-envhelpers",
"main": "lib/",
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/crijke/feathers-envhelpers.git"
},
"author": {
"name": "Christian Rijke",
"email": "[email protected]",
"url": "http://christianrijke.de"
},
"contributors": [],
"bugs": {
"url": "https://github.com/crijke/feathers-envhelpers/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",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"lint": "semistandard lib/*.js lib/**/*.js test/*.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": {
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"sinon": "^7.5.0"
},
"devDependencies": {
"@feathersjs/feathers": "^4.3.10",
"chai": "^4.2.0",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^6.2.2",
"semistandard": "^14.2.0"
}
}