-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.1 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
{
"name": "zwen-react",
"description": "Code generator CLI for projects using react and redux",
"version": "0.8.3",
"author": "Zweitag GmbH @zweitag",
"contributors": [
"Alex Kott <alexander.kott@zweitag.de>",
"Johannes Hollekamp <johannes.hollekamp@zweitag.de"
],
"main": "lib",
"bin": {
"zwen": "./bin/run"
},
"homepage": "https://github.com/zweitag/zwen-react",
"keywords": [
"zweitag",
"react",
"redux",
"generator",
"cli",
"architecture"
],
"license": "MIT",
"repository": "https://github.com/zweitag/zwen-react",
"bugs": "https://github.com/zweitag/zwen-react/issues",
"dependencies": {
"@babel/polyfill": "^7.4.4",
"camel-case": "^3.0.0",
"chalk": "^2.4.2",
"constant-case": "^2.0.0",
"ejs": "^2.6.1",
"fs-readdir-recursive": "^1.1.0",
"fuzzy": "^0.1.3",
"inquirer-autocomplete-prompt": "^1.0.1",
"minimist": "^1.2.0",
"pascal-case": "^2.0.1",
"yeoman-environment": "^2.3.4",
"yeoman-generator": "^3.2.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/camelcase": "^5.2.0",
"@types/ejs": "^2.6.3",
"@types/jest-matchers": "^20.0.2",
"@types/mem-fs": "^1.1.2",
"@types/mem-fs-editor": "^5.1.1",
"@types/node": "^11.13.10",
"@types/yeoman-generator": "^3.1.2",
"jest": "^24.8.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"scripts": {
"babel": "babel src -d lib --extensions .ts --copy-files --ignore src/**/*.test.js",
"clear": "rm -rf lib",
"copy": "cp -R src/generators/templates lib/generators/templates/",
"dev": "export NODE_ENV='development' && ./bin/run",
"build": "export NODE_ENV=production && npm run clear && npm run babel",
"lint": " tslint src/**/*.ts --format stylish",
"test": "jest src --watch",
"test:ci": "jest src",
"prepare": "npm run test:ci && npm run lint && npm run build"
}
}