-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 2.18 KB
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
{
"name": "nitrokit-cli",
"version": "1.1.6",
"description": "A CLI to create Nitrokit projects.",
"main": "index.js",
"scripts": {
"test": "pnpm exec -- node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nitrokit/nitrokit-cli.git"
},
"keywords": [
"cli",
"nitrokit",
"nextjs",
"boilerplate",
"starter-kit",
"generator",
"scaffolding",
"dev-tools"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"authors": {
"name": "Nitrokit",
"url": "https://github.com/nitrokit"
},
"bugs": {
"url": "https://github.com/nitrokit/nitrokit-cli/issues"
},
"homepage": "https://github.com/nitrokit",
"bin": {
"nitrokit": "./index.js"
},
"packageManager": "pnpm@10.18.2+sha512.9fb969fa749b3ade6035e0f109f0b8a60b5d08a1a87fdf72e337da90dcc93336e2280ca4e44f2358a649b83c17959e9993e777c2080879f3801e6f0d999ad3dd",
"dependencies": {
"@google/generative-ai": "^0.17.0",
"boxen": "5.1.2",
"chalk": "4.1.2",
"commander": "^14.0.1",
"execa": "^9.3.0",
"fs-extra": "^11.3.2",
"got": "^14.4.2",
"inquirer": "8.2.5",
"latest-version": "5.1.0",
"nitrokit": "link:../../../Library/pnpm/global/5/node_modules/nitrokit",
"ora": "5.4.1",
"semver": "7.6.3",
"tar": "^7.4.0"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"supertest": "^6.3.4"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/__tests__/setup.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"index.js",
"!**/node_modules/**"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"testMatch": [
"**/__tests__/**/*.test.js"
],
"verbose": true,
"clearMocks": true,
"restoreMocks": true,
"transformIgnorePatterns": [
"node_modules/(?!(execa|got)/)"
],
"moduleNameMapper": {
"^execa$": "<rootDir>/__tests__/__mocks__/execa.js"
}
}
}