This repository has been archived by the owner on Oct 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·76 lines (76 loc) · 2.12 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
{
"name": "@feathers-plus/cli",
"description": "FeathersJS CLI supporting both REST and GraphQL architectural concepts and their query languages.",
"version": "0.8.8",
"homepage": "https://generator.feathers-plus.com/",
"bin": {
"feathers-plus": "./lib/index.js"
},
"preferGlobal": true,
"main": "lib/",
"keywords": [
"feathers",
"featherjs",
"feathers-plugin",
"feathers-plus",
"cli",
"generator",
"graphql",
"tests"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathers-plus/cli.git"
},
"author": {
"name": "John J. Szwaronek",
"email": "[email protected]"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathers-plus/cli/issues"
},
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"publishx": "git push origin --tags && npm run changelog && git push origin",
"release:pre": "npm version prerelease && npm publish --access public --tag pre",
"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 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": {
"sourceType": "module",
"env": [
"mocha"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathers-plus/cli-audit": "^0.0.10",
"@feathers-plus/generator-feathers-plus": "0.8.10",
"chalk": "2.3.0",
"clear": "0.0.1",
"clui": "0.3.6",
"commander": "2.11.0",
"figlet": "1.2.0",
"inquirer": "3.3.0",
"minimist": "1.2.0",
"yeoman-environment": "2.0.5"
},
"devDependencies": {
"chai": "3.5.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "4.0.1",
"semistandard": "11.0.0"
}
}