forked from jondot/hygen
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.66 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
{
"name": "hygen",
"version": "6.0.3",
"main": "dist/index.js",
"repository": "https://github.com/jondot/hygen",
"bin": {
"hygen": "./dist/bin.js"
},
"scripts": {
"standalone": "rm -rf standalone; yarn build:lib && yarn pkg package.json --out-path standalone && node scripts/standalone.js",
"standalone:brew-sha": "shasum -a 256 standalone/*.macos.*.tar.gz",
"build:changelog": "conventional-changelog -i CHANGELOG.md -p angular > CHANGELOG.md",
"build:lib": "tsc",
"build": "yarn build:lib && yarn build:changelog",
"release": "yarn build && git commit -am 'build'; yarn version && git push --tags && git push origin master",
"test": "yarn test:code && yarn test:require",
"test:win32": "node node_modules/jest/bin/jest.js --runInBand metaverse",
"test:code": "node node_modules/.bin/jest",
"test:metaverse": "node node_modules/.bin/jest metaverse",
"test:require": "node dist/bin.timed.js; node dist/bin.timed.js; node dist/bin.timed.js init self; rm -rf _templates",
"watch": "node node_modules/.bin/jest --watch",
"hygen": "ts-node src/bin.ts",
"hygen:build": "node dist/bin.js",
"hygen:timed": "node dist/bin.timed.js",
"docs:prepare": "cd hygen.io && yarn",
"docs:watch": "cd hygen.io && yarn start",
"docs:build": "cd hygen.io && yarn build",
"docs:publish": "cd hygen.io && yarn deploy"
},
"dependencies": {
"@types/node": "^14.0.14",
"chalk": "^4.1.0",
"change-case": "^3.1.0",
"ejs": "^3.1.3",
"enquirer": "^2.3.6",
"execa": "^4.0.2",
"front-matter": "^4.0.2",
"fs-extra": "^9.0.1",
"ignore-walk": "^3.0.3",
"inflection": "^1.12.0",
"yargs-parser": "^18.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"@types/node": "^14.0.14",
"conventional-changelog-cli": "^2.0.34",
"dir-compare": "^2.3.0",
"gh-pages": "^3.1.0",
"jest": "^26.1.0",
"pkg": "^4.4.9",
"time-require": "^0.1.2",
"ts-jest": "^26.1.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6",
"zeroconf-typescript-eslint": "^2.2.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/__tests__/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": "src/**/*",
"outPath": "standalone",
"targets": [
"node12-macos",
"node12-linux",
"node12-win"
]
},
"license": "MIT",
"description": "The scalable code generator that saves you time.",
"keywords": [
"template",
"generator",
"hygen",
"boilerplate",
"redux",
"react"
]
}