UNPKG

2.72 kBJSONView Raw
1{
2 "name": "create-ts-index",
3 "version": "1.13.3",
4 "description": "Automatic create index.ts file",
5 "main": "dist/cti.js",
6 "scripts": {
7 "test": "cross-env NODE_ENV=develop DEBUG=cti:*,ctit:* jest --runInBand",
8 "win": "npx cross-env NODE_ENV=develop DEBUG=ctit:* jest --runInBand",
9 "debug": "node --nolazy --inspect-brk=9229 ./node_modules/.bin/jest --runInBand",
10 "start": "node -r ts-node/register ./src/cti.ts",
11 "webpack:prod": "NODE_ENV=production webpack --config webpack.config.prod.js",
12 "webpack:dev": "NODE_ENV=production webpack --config webpack.config.dev.js",
13 "dbgstart": "DEBUG=cti:* node -r ts-node/register --nolazy --inspect-brk=9229 ./src/cti.ts ",
14 "prebuild": "npm run clean",
15 "build": "tsc",
16 "clean": "rimraf ./dist",
17 "prepub": "npm run clean && npm run webpack:prod",
18 "pub": "npm publish --registry http://localhost:8901 --force",
19 "prepub:prod": "npm run clean && npm run webpack:prod",
20 "pub:prod": "npm publish"
21 },
22 "repository": {
23 "type": "git",
24 "url": "git+https://github.com/imjuni/create-ts-index.git"
25 },
26 "bin": {
27 "cti": "./dist/cti.js"
28 },
29 "author": "ByungJoon Lee",
30 "license": "MIT",
31 "bugs": {
32 "url": "https://github.com/imjuni/create-ts-index/issues"
33 },
34 "files": [
35 "dist"
36 ],
37 "types": "./dist/cti.d.ts",
38 "homepage": "https://github.com/imjuni/create-ts-index#readme",
39 "jest": {
40 "testEnvironment": "node",
41 "moduleFileExtensions": [
42 "ts",
43 "tsx",
44 "js"
45 ],
46 "transform": {
47 "^.+\\.(ts|tsx)$": "ts-jest"
48 },
49 "testMatch": [
50 "**/__tests__/*.(ts|tsx)"
51 ]
52 },
53 "devDependencies": {
54 "@types/debug": "^4.1.4",
55 "@types/glob": "^7.1.1",
56 "@types/jest": "^23.3.5",
57 "@types/json5": "0.0.30",
58 "@types/node": "^12.0.2",
59 "@types/yargs": "^15.0.4",
60 "codecov": "^3.6.5",
61 "cross-env": "^5.2.0",
62 "jest": "^25.2.4",
63 "rimraf": "^2.6.2",
64 "ts-jest": "^25.3.0",
65 "ts-loader": "^7.0.0",
66 "ts-node": "^8.3.0",
67 "tsconfig-paths-webpack-plugin": "^3.2.0",
68 "tslint": "^5.20.1",
69 "tslint-config-airbnb": "^5.11.1",
70 "tslint-config-prettier": "^1.18.0",
71 "typescript": "^3.8.3",
72 "typescript-tslint-plugin": "^0.5.0",
73 "webpack": "^4.42.1",
74 "webpack-cli": "^3.3.11",
75 "webpack-node-externals": "^1.7.2",
76 "webpackbar": "^4.0.0"
77 },
78 "dependencies": {
79 "chalk": "^2.4.1",
80 "commander": "^2.19.0",
81 "dayjs": "^1.8.14",
82 "debug": "^4.1.1",
83 "deepmerge": "^4.2.2",
84 "fast-glob": "^3.2.2",
85 "glob": "^7.1.3",
86 "json5": "^2.1.3",
87 "merge": "^1.2.1",
88 "minimatch": "^3.0.4",
89 "my-easy-fp": "^0.5.1",
90 "tslib": "^1.10.0",
91 "yargs": "^15.3.1"
92 }
93}