-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 2.82 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
{
"name": "motherhen",
"version": "0.2.0",
"engines": {
"node": ">=18.12"
},
"description": "Creating new Mozilla-based applications",
"type": "module",
"scripts": {
"eslint": "eslint --max-warnings=0 typescript-cli",
"help": "./cli/motherhen.js --help",
"mach": "./cli/motherhen.js mach",
"setup": "./cli/motherhen.js setup",
"start": "./cli/motherhen.js",
"test": "echo \"Error: no test specified\" && exit 1",
"test:setup": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --no-cache --watch --no-watchman",
"test:setup:debug": "node --inspect --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js --no-cache --watch --no-watchman",
"test:clean": "rm -rf test/checkouts",
"test:create": "npm run tsc && ./cli/motherhen.js create --config=./test/.motherhen-config.json --project=default",
"test:configure": "npm run tsc && ./cli/motherhen.js mach configure --config=./test/.motherhen-config.json --project=default",
"test:build": "npm run tsc && ./cli/motherhen.js mach build --config=./test/.motherhen-config.json --project=default",
"test:run": "npm run tsc && ./cli/motherhen.js mach run --config=./test/.motherhen-config.json --project=default",
"test:package": "npm run tsc && ./cli/motherhen.js mach package --config=./test/.motherhen-config.json --project=default",
"test:where": "npm run tsc && ./cli/motherhen.js where --config=./test/.motherhen-config.json --project=default",
"tsc": "rm -rf ./cli/*/* && tsc",
"onpush-cli": "node --trace-uncaught ./cli/build-utilities/onPush_cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ajvincent/motherhen.git"
},
"keywords": [
"Mozilla"
],
"author": "Alexander J. Vincent <[email protected]>",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/ajvincent/motherhen/issues"
},
"homepage": "https://github.com/ajvincent/motherhen#readme",
"dependencies": {
"commander": "^9.4.1",
"fast-glob": "^3.2.12",
"ini": "^3.0.1",
"inquirer": "^9.1.4",
"inquirer-file-tree-selection-prompt": "^2.0.5",
"inquirer-interrupted-prompt": "^2.0.1",
"replace-in-file": "^6.3.5",
"wget-improved": "^3.3.1",
"which": "^3.0.0"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/argparse": "^2.0.10",
"@types/ini": "^1.3.31",
"@types/inquirer": "^9.0.3",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"eslint": "^8.30.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.0",
"type-fest": "^3.5.1",
"typescript": "^4.9.4"
},
"imports": {
"#cli/*": "./cli/*"
}
}