forked from plopjs/node-plop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.11 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
{
"name": "node-plop",
"version": "0.16.0",
"description": "programmatic plopping for fun and profit",
"main": "lib/index.js",
"types": "index.d.ts",
"scripts": {
"clean": "node ./build-scripts/clean",
"eslint": "eslint src/",
"test": "npm run compile && ava",
"test-watch": "ava --watch",
"compile": "npm run clean && babel src --out-dir lib",
"compile-watch": "babel src --watch --out-dir lib",
"prepublish": "npm run compile",
"develop": "npm run clean && (npm run compile-watch & npm run test-watch)"
},
"pre-commit": [
"compile",
"eslint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/amwmedia/node-plop.git"
},
"keywords": [
"plop",
"generator",
"scaffolding",
"node",
"programmatic",
"automation"
],
"author": "Andrew Worcester <[email protected]> (http://amwmedia.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/amwmedia/node-plop/issues"
},
"homepage": "https://github.com/amwmedia/node-plop#readme",
"engines": {
"node": ">=8.9.4"
},
"devDependencies": {
"@types/inquirer": "0.0.43",
"ava": "^0.25.0",
"babel-cli": "^6.16.0",
"babel-preset-node8": "^1.2.0",
"eslint": "^5.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^7.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"plop": "^2.0.0",
"plop-pack-fancy-comments": "^0.2.1",
"pre-commit": "^1.1.3"
},
"dependencies": {
"change-case": "^3.0.1",
"co": "^4.6.0",
"colors": "^1.1.2",
"core-js": "^2.4.1",
"del": "^3.0.0",
"globby": "^8.0.0",
"handlebars": "^4.0.5",
"inquirer": "^6.0.0",
"isbinaryfile": "^3.0.2",
"lodash.get": "^4.4.2",
"mkdirp": "^0.5.1",
"pify": "^4.0.0",
"resolve": "^1.2.0"
},
"ava": {
"files": [
"tests/*.ava.js"
],
"source": [
"tests/**/plopfile.js",
"lib/**/*.js"
],
"require": [
"babel-register"
],
"babel": "inherit",
"failFast": true,
"tap": true
}
}