-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.73 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
{
"name": "@methodgrab/initializer-utils",
"version": "0.1.0",
"description": "Utilities for creating npm initializers.",
"type": "module",
"exports": {
".": "./dist/index.js",
"./testing": "./dist/testing/index.js"
},
"files": ["dist/**"],
"scripts": {
"build": "rm -rf ./dist && tsc --project ./tsconfig.build.json",
"dev": "tsc --watch",
"lint": "eslint src",
"prepublishOnly": "npm run build && npm run validate",
"pretest": "npm run build && npm run example-basic:build",
"test": "ava",
"validate": "npm run lint && npm run test",
"validate:build": "tsc --project ./tsconfig.build.json --noEmit",
"example-basic:build": "rm -rf ./examples/basic/dist && tsc --project ./examples/basic/tsconfig.json",
"postexample-basic:build": "chmod +x ./examples/basic/dist/cli.js"
},
"keywords": [
"create",
"init",
"initializer",
"utilities",
"utils",
"tools",
"generator",
"generate",
"template",
"skaffold",
"boilerplate"
],
"author": "MethodGrab",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/MethodGrab/initializer-utils.git"
},
"bugs": {
"url": "https://github.com/MethodGrab/initializer-utils/issues"
},
"homepage": "https://github.com/MethodGrab/initializer-utils#readme",
"engines": {
"node": ">=16.13.0"
},
"dependencies": {
"@types/inquirer": "^9.0.2",
"execa": "^6.1.0",
"inquirer": "^9.1.3",
"tempy": "^3.0.0"
},
"devDependencies": {
"@types/node": "16.11.64",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"ava": "^4.3.3",
"eslint": "^8.25.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}