-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
105 lines (105 loc) · 3.33 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "generate-template-files",
"version": "3.2.1",
"description": "A generator to create custom template files for your applications",
"keywords": [
"generate",
"templates",
"scaffolding",
"bootstrap",
"boilerplate",
"skeleton",
"generate-code",
"custom-files"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
}
},
"scripts": {
"---------- HELPERS -----------------------------------------": "",
"clean": "rimraf dist",
"ts": "tsc --noEmit",
"ts:watch": "npm run ts -- --watch",
"build:types": "tsc --emitDeclarationOnly",
"prettier": "npx prettier --write \"./**/*.{ts,tsx,js,jsx,json,md}\"",
"up": "yarn upgrade-interactive --latest",
"---------- DEVELOPMENT -------------------------------------": "",
"prewatch": "npm run clean && npm run build:types",
"watch": "rollup -cw",
"---------- PRODUCTION --------------------------------------": "",
"docs": "typedoc --out ./docs ./src --mode file --tsconfig ./tsconfig.json",
"postdocs": "prettier --write './docs/**/*'",
"prebuild": "npm run ts && npm run clean && npm run build:types",
"build": "rollup -c",
"---------- TESTING -----------------------------------------": "",
"test": "npm run lint && npm run unit",
"test:watch": "jest --watch",
"lint": "tslint 'src/**/*.ts{,x}' --exclude 'src/typings.d.ts'",
"unit": "jest",
"coverage": "jest --coverage",
"---------- PUBLISH -----------------------------------------": "",
"prerelease": "npm run build",
"release": "np",
"------------------------------------------------------------": ""
},
"main": "dist/generate-template-files.cjs.js",
"module": "dist/generate-template-files.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"colors": "1.4.0",
"enquirer": "2.3.6",
"path-exists": "4.0.0",
"recursive-copy": "2.0.14",
"replace-string": "3.1.0",
"through2": "4.0.2",
"yargs": "16.2.0"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/plugin-proposal-class-properties": "7.14.5",
"@babel/plugin-proposal-object-rest-spread": "7.15.6",
"@babel/plugin-transform-runtime": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-typescript": "7.15.0",
"@babel/runtime": "7.15.4",
"@types/jest": "27.0.2",
"@types/path-exists": "4.0.2",
"@types/replace-string": "3.0.0",
"@types/through2": "2.0.36",
"@types/yargs": "16.0.1",
"husky": "4.2.5",
"jest": "27.2.5",
"prettier": "2.4.1",
"pretty-quick": "3.1.1",
"rimraf": "3.0.2",
"rollup": "2.58.0",
"rollup-plugin-babel": "4.4.0",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"ts-jest": "27.0.5",
"tslib": "2.3.1",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.22.5",
"typescript": "4.4.3"
},
"author": {
"name": "Robert S. (codeBelt)",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeBelt/generate-template-files.git"
},
"bugs": {
"url": "https://github.com/codeBelt/generate-template-files/issues"
},
"homepage": "https://github.com/codeBelt/generate-template-files#readme"
}