forked from dkundel/create-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.32 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "@atao60/create-project",
"version": "0.0.14",
"description": "A personal CLI to bootstrap new projects",
"main": "./dist/index.js",
"types": "./dist/index-types.d.ts",
"bin": {
"create-project": "./bin/create-project"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/",
"dist/",
"templates/",
"!dist/templates"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run fullcheck"
}
},
"scripts": {
"start": "npm run test",
"clean:deps": "rimraf ./package-lock.json && ts-node scripts/rmdir.ts './node_modules'",
"clean:dev": "rimraf ./dist ./.build",
"clean:full": "npm run clean:dev && npm run clean:deps",
"clean": "npm run clean:dev",
"refresh": "npm run clean:full && npm install",
"compile:app:prod": "babel ./src --out-dir ./dist --extensions '.ts,.js' --delete-dir-on-start",
"compile:app:types": "tsc --project ./src/tsconfig.types.json",
"compile:prod": "npm run compile:app:prod && npm run compile:app:types",
"build": "cross-env NODE_ENV=\"production\" npm run compile:prod",
"compile:app:dev": "babel ./src --out-dir ./dist --extensions '.ts,.js' --delete-dir-on-start --source-maps",
"compile:test:dev": "babel ./test --out-dir ./.build/test --extensions '.ts,.js' --delete-dir-on-start --source-maps",
"compiler:dev": "npm run compile:app:dev && npm run compile:test:dev && ncp ./templates ./dist/templates",
"test:dev": "npm run compiler:dev && mocha --config ./.mocharc.json",
"test:dev:watch": "nodemon --config ./nodemon-it.json",
"test": "npm run test:dev:watch",
"fullcheck": "npm run test:dev && npm run lint",
"preversion": "npm run fullcheck",
"version": "npm run build && git add -A",
"postversion": "cross-env HUSKY_SKIP_HOOKS=1 git push && git push --tags",
"prepublishOnly": "npm run build",
"lint": "tsc --project src && eslint src/**/* --ext .js,.ts --quiet && eslint test/**/* --ext .js,.ts --quiet",
"lint:fix": "eslint --fix src/ && eslint --fix test/"
},
"keywords": [
"boilerplate",
"starter kit",
"template",
"cli",
"typescript",
"javascript",
"ecmascript",
"babel",
"babel 7",
"create-project"
],
"author": "Dominik Kundel <hi@dominik.dev> (https://dkundel.com)",
"contributors": [
"Pierre Raoul <atao60.web@gmail.com>"
],
"license": "MIT",
"engines": {
"node": "10.15.3",
"npm": "6.4.1"
},
"dependencies": {
"arg": "^4.1.0",
"chalk": "^3.0.0",
"core-js": "^3.4.7",
"covgen": "^3.1.0",
"execa": "^4.0.0",
"gitignore": "^0.6.0",
"inquirer": "^7.0.1",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"pkg-install": "^1.0.0",
"regenerator-runtime": "^0.13.3",
"spdx-license-list": "^6.1.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-decorators": "^7.7.4",
"@babel/plugin-transform-typescript": "^7.7.4",
"@babel/preset-env": "^7.7.7",
"@babel/preset-typescript": "^7.7.7",
"@babel/register": "^7.7.7",
"@types/babel-types": "^7.0.7",
"@types/chai": "^4.2.7",
"@types/concat-stream": "^1.6.0",
"@types/core-js": "^2.5.2",
"@types/cross-spawn": "^6.0.1",
"@types/inquirer": "^6.5.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-node-source-map-support": "0.0.1",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"chai": "^4.2.0",
"concat-stream": "^2.0.0",
"cross-env": "^6.0.3",
"cross-spawn": "^7.0.1",
"eslint": "^6.7.1",
"eslint-config-node": "^4.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^4.0.7",
"mocha": "^6.2.2",
"nodemon": "^2.0.2",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-node": "^8.5.3",
"typescript": ">=3.5 <3.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atao-web/create-project.git"
},
"bugs": {
"url": "https://github.com/atao-web/create-project/issues"
},
"homepage": "https://github.com/atao-web/create-project#readme"
}