This repository has been archived by the owner on Jan 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "@feathersjs/cli",
"description": "Command-line Feathers generator",
"version": "4.8.0",
"homepage": "https://github.com/feathersjs/cli",
"main": "lib/",
"bin": {
"feathers": "./bin/feathers.js"
},
"keywords": [
"feathers",
"feathers-plugin"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/cli.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"bugs": {
"url": "https://github.com/feathersjs/cli/issues"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"publish": "git push origin --tags && npm run changelog && git push origin",
"changelog": "github_changelog_generator -u feathersjs -p cli && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"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",
"mocha": "mocha --recursive test/",
"test": "npm run lint && npm run mocha",
"lint": "semistandard --fix",
"update-dependencies": "ncu -u -x yeoman-environment"
},
"directories": {
"lib": "lib"
},
"semistandard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"preferGlobal": true,
"dependencies": {
"@feathersjs/tools": "^0.2.3",
"commander": "^9.3.0",
"generator-feathers": "^4.2.0",
"generator-feathers-plugin": "^0.3.1",
"semver": "^7.3.7",
"update-notifier": "^5.1.0",
"yeoman-environment": "^3.9.1"
},
"devDependencies": {
"lodash": "^4.17.21",
"mocha": "^10.0.0",
"npm-check-updates": "^13.1.5",
"semistandard": "^16.0.1"
}
}