-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
87 lines (87 loc) · 2.75 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
{
"name": "create-ts-index",
"version": "1.14.0",
"description": "Automatic create index.ts file",
"main": "dist/cti.js",
"scripts": {
"test": "cross-env NODE_ENV=develop DEBUG=cti:*,ctit:* jest --runInBand",
"win": "npx cross-env NODE_ENV=develop DEBUG=ctit:* jest --runInBand",
"debug": "node --nolazy --inspect-brk=9229 ./node_modules/.bin/jest --runInBand",
"lint": "eslint --ext ts,tsx ./src/*",
"start": "node -r ts-node/register ./src/cti.ts",
"prewebpack:dev": "npm run clean",
"webpack:dev": "cross-env NODE_ENV=production webpack --config webpack.config.dev.cjs",
"webpack:prod": "cross-env NODE_ENV=production webpack --config webpack.config.prod.cjs",
"dbgstart": "DEBUG=cti:* node -r ts-node/register --nolazy --inspect-brk=9229 ./src/cti.ts ",
"prebuild": "npm run clean",
"build": "tsc",
"clean": "rimraf ./dist",
"prepub": "npm run clean && npm run webpack:prod",
"pub": "npm publish --registry http://localhost:8901 --force",
"prepub:prod": "npm run clean && npm run webpack:prod",
"pub:prod": "npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imjuni/create-ts-index.git"
},
"bin": {
"cti": "./dist/cti.js"
},
"author": "ByungJoon Lee",
"license": "MIT",
"bugs": {
"url": "https://github.com/imjuni/create-ts-index/issues"
},
"files": [
"dist"
],
"types": "./dist/cti.d.ts",
"homepage": "https://github.com/imjuni/create-ts-index#readme",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/json5": "^2.2.0",
"@types/node": "^16.11.12",
"@types/yargs": "^17.0.7",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^8.4.1",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"jest": "^27.4.4",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.1",
"ts-loader": "^9.2.6",
"ts-node": "^10.4.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"tslint": "^6.1.3",
"typescript": "^4.5.3",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-node-externals": "^3.0.0",
"webpackbar": "^5.0.2"
},
"dependencies": {
"chalk": "^4.1.2",
"dayjs": "^1.10.7",
"debug": "^4.3.3",
"deepmerge": "^4.2.2",
"fast-glob": "^3.2.7",
"fp-ts": "^2.11.5",
"glob": "^7.2.0",
"json5": "^2.2.0",
"merge": "^2.1.1",
"minimatch": "^3.0.4",
"my-easy-fp": "^0.9.0",
"tslib": "^2.3.1",
"yargs": "^17.3.0"
}
}