-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 2.07 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
{
"name": "typescript-project-generator",
"version": "6.1.0",
"description": "A TypeScript initial configuration for web projects",
"main": "./lib/index.js",
"scripts": {
"service": "node ./bin",
"example": "npm run service && npm run rm:git",
"test": "npm run rm && jest --setupFiles dotenv/config --ci -i --testPathPattern=test --detectOpenHandles --forceExit && npm run rm:git && npm run test:example",
"test:ci": "npm run rm && jest --ci -i --testPathPattern=test --detectOpenHandles --forceExit && npm run rm:git && npm run test:example",
"test:example": "npm run test:local --prefix example",
"rm": "if [ -d \"example\" ]; then rm -rf example; fi",
"rm:git": "rm -rf example/.git",
"lint": "eslint --ext js lib/ --fix",
"release": "standard-version",
"version": "npm run release && git add ."
},
"bin": {
"tpg": "./bin/index.js"
},
"preferGlobal": true,
"dependencies": {
"cli-progress": "3.12.0",
"colors": "1.4.0",
"prompts": "2.4.2",
"underscore": "1.13.7"
},
"devDependencies": {
"@jest/types": "29.6.3",
"@types/jest": "29.5.12",
"@types/prompts": "2.4.9",
"dotenv": "16.4.5",
"eslint": "^8",
"eslint-config-prettier": "^8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jest": "28.8.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"standard-version": "9.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnthonyLzq/typescript-project-generator.git"
},
"keywords": [
"TypeScript",
"cli",
"console",
"term",
"terminal",
"tool",
"tty",
"utility"
],
"author": "AnthonyLzq",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnthonyLzq/typescript-project-generator/issues"
},
"homepage": "https://github.com/AnthonyLzq/typescript-project-generator#readme",
"files": [
"lib",
"bin"
],
"standard-version": {
"skip": {
"tag": true,
"commit": true,
"bump": true
}
}
}