This repository has been archived by the owner on Feb 15, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
97 lines (97 loc) · 2.61 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "feathers-generator",
"description": "A generator for scaffolding components that make up a Feathers application",
"version": "0.0.0",
"homepage": "https://github.com/feathersjs/feathers-generator",
"main": "lib/",
"license": "MIT",
"keywords": [
"feathers",
"feathers-plugin",
"feathers-generator",
"generator",
"plugin",
"CLI"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/feathersjs/feathers-generator/blob/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "git://github.com/feathersjs/feathers-generator.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs/feathers-generator/issues"
},
"engines": {
"node": ">= 4"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin && git push origin --tags",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"compile": "npm run copy && babel -d lib/ src/",
"copy": "shx rm -rf lib/ && shx cp -r src/ lib/",
"watch": "npm run copy && babel --watch -d lib/ src/",
"lint": "eslint-if-supported semistandard --fix",
"mocha": "mocha --opts mocha.opts",
"test": "npm run compile && npm run lint && npm run coverage",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha -- --opts mocha.opts"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"/lib",
"/src/**/templates",
"/src/**/templates/**"
]
},
"directories": {
"lib": "lib"
},
"dependencies": {
"ast-traverse": "^0.1.1",
"async": "^2.1.2",
"chalk": "^1.1.1",
"consolidate": "^0.14.1",
"cross-spawn-async": "^2.1.9",
"debug": "^2.2.0",
"fs-extra": "^0.30.0",
"handlebars": "^4.0.5",
"i": "^0.3.3",
"lodash.isarray": "^4.0.0",
"lodash.merge": "^4.4.0",
"lodash.mergewith": "^4.6.0",
"metalsmith": "^2.1.0",
"metalsmith-copy": "^0.3.0",
"metalsmith-move-up": "^1.0.0",
"recast": "^0.11.2",
"repeating": "^2.0.0",
"string": "^3.3.1",
"string-length": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.7.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"eslint-if-supported": "^1.0.1",
"istanbul": "^1.1.0-alpha.1",
"mocha": "^2.4.5",
"shx": "^0.2.1",
"semistandard": "^9.1.0"
}
}