-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.62 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
{
"name": "github-sublime-theme",
"version": "2.7.0",
"description": "GitHub theme for Sublime Text",
"repository": {
"type": "git",
"url": "https://github.com/mauroreisvieira/github-sublime-theme"
},
"bugs": {
"url": "https://github.com/mauroreisvieira/github-sublime-theme/issues"
},
"author": "Mauro Reis Vieira <mauroreisvieira@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "tsc -w",
"build": "ts-node src/index.ts",
"icons": "ts-node src/icons.ts",
"prettier": "prettier --write \"src/*.ts?(x)\"",
"lint": "eslint src/*.ts",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"release": "bash scripts/release.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@types/node": "^20.4.1",
"@babel/core": "7.22.9",
"@babel/preset-env": "7.22.9",
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@meetio/scheme-generator": "^3.1.0",
"@primer/primitives": "^7.11.14",
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "6.0.0",
"@typescript-eslint/parser": "6.0.0",
"conventional-changelog-cli": "^3.0.0",
"eslint": "8.44.0",
"picocolors": "^1.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"svg2img": "^0.9.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}