-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
84 lines (84 loc) · 2.28 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
{
"name": "water-drop",
"version": "2.0.1",
"author": "anvk",
"main": "index.js",
"bin": {
"water-drop": "./bin/water-drop"
},
"preferGlobal": true,
"description": "💧 very easy to use multi-language scaffolding/boilerplate tool for creating code for your existing projects",
"contributors": [
{
"name": "Alexey Novak",
"email": "alexey.novak.mail@gmail.com"
}
],
"scripts": {
"lint": "eslint src test",
"build:source": "rimraf dist/ && babel src/ --out-dir dist/",
"build:tests": "rimraf test-dist/ && babel test/ --out-dir test-dist/",
"clean": "rimraf dist/ && rimraf test-dist/",
"build": "npm run build:source && npm run build:tests",
"test": "node node_modules/mocha/bin/mocha --reporter spec test-dist/*"
},
"repository": {
"type": "git",
"url": "git@github.com:roserocket/water-drop.git"
},
"keywords": [
"scaffold",
"scaffolding",
"app",
"project",
"bootstrap",
"boilerplate",
"boilerplates",
"generate",
"generator",
"plugin",
"project",
"skeleton",
"start",
"starter",
"tool",
"template",
"templating",
"toolkit",
"dev",
"development",
"build",
"cli",
"copy",
"init"
],
"dependencies": {
"chalk": "2.3.0",
"fs-extra": "4.0.2",
"handlebars": "4.2.0",
"meow": "3.7.0",
"minimist": "1.2.0",
"mkdirp": "0.5.1"
},
"devDependencies": {
"babel-cli": "6.16.0",
"babel-eslint": "7.0.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.6.1",
"chai": "3.5.0",
"eslint": "6.3.0",
"eslint-config-airbnb": "12.0.0",
"eslint-plugin-import": "1.16.0",
"eslint-plugin-jsx-a11y": "2.2.2",
"eslint-plugin-react": "6.3.0",
"mocha": "3.1.0",
"rimraf": "2.5.4"
},
"engine": "node >= 0.10.x",
"homepage": "https://github.com/roserocket/water-drop",
"bugs": {
"url": "https://github.com/roserocket/water-drop/issues"
},
"private": false,
"license": "MIT"
}