-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
79 lines (79 loc) · 2.13 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
{
"name": "ts-creator",
"version": "1.2.5",
"description": "A code generator to generate TypeScript code generator from TypeScript code",
"main": "dist/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 gulp",
"test": "cross-env NODE_OPTIONS=--max_old_space_size=4096 gulp test",
"lint": "prettier --config ./prettier.json --list-different ./types/**/* ./src/* ./src/**/* ./tests/**/* ./gulpfile.js ./webpack.config.js ./update-next.js",
"prettier": "prettier --config ./prettier.json --write ./types/**/* ./src/* ./src/**/* ./tests/**/* ./gulpfile.js ./webpack.config.js ./update-next.js",
"coverage": "cross-env NODE_OPTIONS=--max_old_space_size=4096 nyc gulp coverage"
},
"author": "kingwl",
"license": "MIT",
"dependencies": {
"cardinal": "^2.1.1",
"get-stdin": "^6.0.0",
"prettier": "^1.19.1",
"typescript": "^3.9.7",
"yargs": "^16.2.0"
},
"bin": {
"ts-creator": "bin/ts-creator"
},
"files": [
"src",
"dist",
"bin",
"LICENSE",
"tsconfig.json",
"package.json",
"README.md"
],
"devDependencies": {
"@types/diff": "^4.0.2",
"@types/get-stdin": "^5.0.1",
"@types/gulp": "^4.0.7",
"@types/gulp-typescript": "^2.13.0",
"@types/memory-fs": "^0.3.2",
"@types/node": "^10.17.49",
"@types/prettier": "^1.19.1",
"@types/webpack-merge": "^4.1.5",
"@types/webpack-stream": "^3.2.11",
"@types/yargs": "^12.0.19",
"codecov": "^3.8.1",
"cross-env": "^5.2.1",
"del": "^3.0.0",
"diff": "^4.0.2",
"gulp": "^4.0.2",
"gulp-prettier": "^2.3.0",
"gulp-typescript": "^5.0.1",
"istanbul-instrumenter-loader": "^3.0.1",
"memory-fs": "^0.4.1",
"nyc": "^15.1.0",
"require-from-string": "^2.0.2",
"through2": "^3.0.2",
"ts-loader": "^5.4.5",
"webpack": "^4.44.2",
"webpack-merge": "^4.2.2",
"webpack-stream": "^5.2.1"
},
"nyc": {
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"lcov"
],
"all": true
}
}