-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
98 lines (98 loc) · 2.92 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
{
"name": "newts",
"version": "1.35.0",
"description": "Generator to kickstart TypeScript modules for easy publishing to NPMJS",
"main": "dist/newts.js",
"type": "commonjs",
"bin": {
"newts": "./dist/newts-cli.js"
},
"files": [
"dist/**/*",
"_gitignore",
"jest.config.js",
"licenses/*",
"generate-index.js"
],
"scripts": {
"pretest": "run-p lint test-build clear-jest-cache",
"clear-jest-cache": "rimraf .jest-cache",
"test": "jest",
"test-with-detect-open-handles": "jest --detectOpenHandles",
"lint": "eslint .",
"autolint": "nodemon -e ts -x \"run-s lint\"",
"autobuild": "nodemon -w src -w tests -e ts -x \"run-s --silent build\"",
"autotest": "jest -w",
"test-build": "tsc --noEmit",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "cp .gitignore _gitignore",
"prerelease-beta": "run-s verify-up-to-date test",
"release-beta": "run-s quick-release-beta",
"prequick-release-beta": "run-s build",
"quick-release-beta": "cross-env BETA=1 VERSION_INCREMENT_STRATEGY=patch run-s \"zarro release-npm\"",
"prerelease": "run-s build verify-up-to-date test",
"release": "cross-env VERSION_INCREMENT_STRATEGY=minor run-s \"zarro release-npm\"",
"zarro": "zarro",
"start": "ts-node src/newts-cli.ts",
"download-licenses": "ts-node tools/download-licenses.ts",
"itest": "run-s \"start -- --cli --name newts-test-cli-integration-test --output /tmp\"",
"verify-up-to-date": "zarro verify-up-to-date"
},
"repository": {
"type": "git",
"url": "https://github.com/fluffynuts/newts"
},
"keywords": [
"typescript",
"generator",
"bootstrap",
"module",
"library",
"quick-start"
],
"author": {
"name": "Davyd McColl",
"email": "[email protected]",
"url": "https://github.com/fluffynuts"
},
"license": "BSD-3-Clause",
"devDependencies": {
"@types/bent": "^7.0.2",
"@types/faker": "^4.1.12",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.3",
"@types/jsdom": "^16.2.3",
"@types/node": "^14.0.9",
"@types/rimraf": "^3.0.0",
"@types/validate-npm-package-name": "^3.0.0",
"@types/which": "^1.3.2",
"@types/yargs": "^15.0.5",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"cpy-cli": "^5.0.0",
"eslint": "^8.51.0",
"expect-even-more-jest": "^1.19.0",
"faker": "^4.1.0",
"filesystem-sandbox": "^1.20.0",
"jest": "^29.7.0",
"jsdom": "^16.2.2",
"leaked-handles": "^5.2.0",
"nodemon": "^3.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^8.10.2",
"typescript": "^5.2.2",
"zarro": "^1.178.0"
},
"dependencies": {
"ansi-colors": "^4.1.1",
"bent": "^7.3.7",
"inquirer": "^8.2.6",
"inquirer-autocomplete-prompt": "^2.0.1",
"validate-npm-package-name": "^3.0.0",
"which": "^2.0.2",
"yafs": "^1.13.0",
"yargs": "^15.3.1"
}
}