-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.8 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
{
"name": "@apprexp/gov2oas",
"version": "0.1.0",
"description": "> **This project is under heavy development. Expect many breaking changes.**",
"main": "index.js",
"scripts": {
"cm": "git-cz -s",
"test": "gulp",
"lint:check": "npm run prettier:check",
"lint:check:lint-staged": "npm run prettier:check:lint-staged",
"lint:fix": "npm run prettier:fix",
"prettier:check": "prettier --check src/apis/**/*.yml",
"prettier:check:lint-staged": "prettier --check",
"prettier:fix": "prettier --write src/apis/**/*.yml"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged && npm run test",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
}
},
"lint-staged": {
"src/apis/**/*.yml": "npm run lint:check:lint-staged"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apprexp/govsg2oas.git"
},
"author": "AppRExp",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/apprexp/govsg2oas/issues"
},
"homepage": "https://github.com/apprexp/govsg2oas#readme",
"dependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.6.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"husky": "^4.0.0",
"lint-staged": "^9.4.3",
"prettier": "^1.19.1",
"pump": "^3.0.0",
"swagger-parser": "^8.0.3",
"ts-node": "^8.5.2",
"typescript": "^3.7.2",
"yaml": "^1.7.2"
},
"devDependencies": {
"@types/gulp": "4.0.6",
"@types/node": "12.12.25",
"@types/pump": "1.1.0",
"@types/yaml": "1.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}