-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.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
{
"name": "@windingtree/glider-types",
"version": "0.0.0-semantic-release",
"description": "Typescript types of Glider projects",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky install",
"commit": "git-cz -S",
"changelog": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s",
"lint": "npx eslint . --ext .js && npx prettier -c .",
"lint:fix": "npx eslint . --fix --ext .js && npx prettier -w .",
"build": "rm -rf dist pages && node scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windingtree/glider-types.git"
},
"author": "Winding Tree Developers <[email protected]>",
"license": "GPLV3",
"bugs": {
"url": "https://github.com/windingtree/glider-types/issues"
},
"homepage": "https://github.com/windingtree/glider-types#readme",
"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/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.1",
"js-yaml": "^4.1.0",
"json-schema-to-typescript": "^11.0.2",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"handlebars": "^4.7.7"
}
}