generated from bennycode/ts-node-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.65 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
{
"description": "Conversational wizard and prompts generator with zero dependencies.",
"devDependencies": {
"@tstv/tsconfig-common": "^3.6.0",
"@types/jasmine": "^4.3.5",
"@types/node": "^18",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prettier": "^3.3.1",
"generate-changelog": "^1.8.0",
"husky": "^4.2.5",
"jasmine": "^5.0.2",
"lint-staged": "^13.2.3",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^5.5.4"
},
"engines": {
"node": ">= 10.9"
},
"files": [
"dist"
],
"keywords": [
"answer",
"ask",
"conversational",
"interaction",
"interface",
"prompt",
"questionnaire",
"setup",
"ui",
"wizard"
],
"license": "MIT",
"main": "dist/index.js",
"name": "wizardy",
"repository": {
"type": "git",
"url": "git+https://github.com/bennyn/wizardy.git"
},
"scripts": {
"build": "tsc",
"changelog:commit": "git add CHANGELOG.md && git commit -m \"docs: updated CHANGELOG.md\"",
"clean": "rimraf .nyc_output coverage dist",
"dist": "npm run clean && npm run build",
"fix": "npm run fix:other && npm run fix:js && npm run fix:ts",
"fix:js": "npm run lint:js --fix",
"fix:other": "npm run prettier --write",
"fix:ts": "npm run lint:ts --fix",
"lint": "npm run lint:types && npm run lint:js && npm run lint:other && npm run lint:ts",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx .",
"lint:other": "npm run prettier --list-different",
"lint:ts": "tslint --config tslint.json --project tsconfig.json \"**/*.ts\"",
"lint:types": "tsc --noEmit",
"postversion": "git push origin && git push origin --tags && npm publish",
"prettier": "prettier --ignore-path .gitignore \"**/*.{json,scss,yml}\"",
"preversion": "git pull && npm run && npm run test && npm run dist",
"release:major": "generate-changelog -M -x \"chore,docs,refactor,style,test\" && npm run changelog:commit && npm version major",
"release:minor": "generate-changelog -m -x \"chore,docs,refactor,style,test\" && npm run changelog:commit && npm version minor",
"release:patch": "generate-changelog -p -x \"chore,docs,refactor,style,test\" && npm run changelog:commit && npm version patch",
"test": "tsc --noEmit && nyc --nycrc-path=nyc.config.coverage.js jasmine --config=jasmine.json",
"test:dev": "nyc jasmine --config=jasmine.json"
},
"version": "0.4.1"
}