-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.35 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
{
"name": "reactman",
"version": "3.5.2",
"description": "Reactman is a CLI code generation tool which will take templates and populate them via the command line prompt script and then move them into your codebase.",
"main": "./bin/reactman.js",
"bin": {
"reactman": "./bin/reactman.js"
},
"scripts": {
"reactmantest": "node ./bin/reactman.js --config ./test/test_config.js",
"pretest": "rimraf ./test/output/components && mkdir ./test/output/components && rimraf ./test/output/tests && rimraf ./test/output/empty-folder && mkdir ./test/output/tests",
"test": "npm run lint && npm run reactmantest && mocha",
"lint": "eslint ./bin/ ./src/"
},
"repository": {
"type": "git",
"url": "https://github.com/edwinwebb/reactman"
},
"keywords": [
"code generation",
"tool",
"templating",
"workflow",
"build",
"react",
"productivity"
],
"author": "Edwin Webb",
"license": "ISC",
"bugs": {
"url": "https://github.com/edwinwebb/reactman/issues"
},
"homepage": "https://github.com/edwinwebb/reactman",
"dependencies": {
"async": "^1.4.2",
"blueimp-tmpl": "^2.5.5",
"camelcase": "^2.1.1",
"chalk": "^1.1.0",
"inquirer": "^0.10.0",
"minimist": "^1.1.2",
"slug": "^0.9.1"
},
"devDependencies": {
"eslint": "^0.24.1",
"mocha": "^2.2.5",
"rimraf": "^2.4.2"
}
}