forked from feathersjs-ecosystem/generator-feathers-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "generator-feathers-plugin",
"version": "0.10.0",
"description": "A generator for Feathersjs Plugins.",
"keywords": [
"yeoman-generator",
"feathers"
],
"homepage": "https://github.com/feathersjs/generator-feathers-plugin",
"bugs": "https://github.com/feathersjs/generator-feathers-plugin/issues",
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"main": "app/index.js",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/generator-feathers-plugin.git"
},
"scripts": {
"lint": "semistandard --fix",
"test": "npm run lint && mocha test/ --timeout 180000",
"publish": "git push origin && git push origin --tags",
"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"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib"
]
},
"dependencies": {
"yeoman-generator": "^1.0.1"
},
"devDependencies": {
"mocha": "^3.1.0",
"semistandard": "^11.0.0",
"yeoman-test": "^1.4.0"
},
"engines": {
"node": ">= 5.0.0"
},
"license": "MIT"
}