-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.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
{
"name": "create-swift-package",
"version": "1.1.0",
"description": "An interactive alternative to swift package init",
"scripts": {
"dev": "esbuild index.ts --bundle --outdir=dist --platform=node --watch --loader:.mustache=text",
"build": "esbuild index.ts --bundle --outdir=dist --platform=node --minify --loader:.mustache=text",
"test": "npm run unit && npm run integration",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' jest \"test/unit\"",
"test:integration:basic": "NODE_OPTIONS='--experimental-vm-modules' jest \"test/integration/basic\"",
"test:integration:all": "NODE_OPTIONS='--experimental-vm-modules' jest --verbose \"test/integration\""
},
"keywords": [
"swift",
"packages"
],
"author": "Alex Rozanski",
"license": "MIT",
"bin": {
"create-swift-package": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/alexrozanski/create-swift-package"
},
"bugs": {
"url": "https://github.com/alexrozanski/create-swift-package/issues"
},
"funding": "https://github.com/sponsors/alexrozanski",
"devDependencies": {
"@glen/jest-raw-loader": "^2.0.0",
"@types/jest": "^29.5.1",
"@types/lodash": "^4.14.194",
"@types/mustache": "^4.2.2",
"@types/node": "^18.16.2",
"@types/prompts": "2.0.1",
"@types/tmp": "^0.2.3",
"chalk": "^5.2.0",
"commander": "^10.0.1",
"esbuild": "^0.17.18",
"esbuild-config": "^1.0.1",
"execa": "^7.1.1",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"meow": "^11.0.0",
"mustache": "^4.2.0",
"ora": "^6.3.0",
"prompts": "2.1.0",
"tmp": "^0.2.1",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"zod": "^3.21.4"
}
}