-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.67 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
{
"name": "oyster-package-generator",
"version": "0.0.0-development",
"description": "CLI to automatically generate a Unity Package Manager project",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"build": "tsc --project tsconfig.build.json",
"start": "npm run build && node dist/index.js",
"lint": "eslint src --ext .js,.ts --max-warnings 0",
"dev": "nodemon",
"semantic-release": "semantic-release",
"commit": "git-cz",
"prettier": "prettier --write \"src/**/*.ts\"",
"prepare": "husky install",
"ci:local:commit": "npm run lint && pretty-quick --staged --pattern \"**/*.ts\"",
"ci:local:push": "npm run build && npm run test:coverage"
},
"bin": {
"oyster": "./bin/oyster"
},
"author": "Ash Blue",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/fs-extra": "^9.0.13",
"@types/glob": "^8.0.0",
"@types/inquirer": "^8.2.3",
"@types/jest": "^29.0.3",
"@types/node": "^16.11.7",
"@types/shelljs": "^0.8.11",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.23.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-jsdoc": "^39.3.6",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.1",
"jest": "^29.0.3",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.1",
"typescript": "^4.8.3"
},
"dependencies": {
"chalk": "^4.1.2",
"del": "^6.1.1",
"fs-extra": "^10.1.0",
"git-remote-origin-url": "^3.1.0",
"glob": "^8.0.3",
"inquirer": "^8.2.4",
"nanoid": "^3.3.4",
"shelljs": "^0.8.5",
"simple-git": "^3.14.1"
},
"repository": {
"type": "git",
"url": "https://github.com/ashblue/oyster-package-generator.git"
},
"keywords": [
"unity",
"unity3d",
"upm",
"package generator",
"cli"
],
"bugs": {
"url": "https://github.com/ashblue/oyster-package-generator/issues"
},
"homepage": "https://github.com/ashblue/oyster-package-generator#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}