-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "box-salesforce-sdk",
"version": "1.0.0",
"description": "This is the Salesforce SDK for integrating with the Box Platform.",
"scripts": {
"cm": "git-cz",
"prettier": "prettier"
},
"repository": {
"type": "git",
"url": "git+https://github.com/box/box-salesforce-sdk.git"
},
"keywords": [
"apex"
],
"author": "bassman531",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/box/box-salesforce-sdk/issues"
},
"homepage": "https://github.com/box/box-salesforce-sdk#readme",
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"cz-conventional-changelog": "^3.1.0",
"husky": "^4.2.3",
"lint-staged": "^10.0.9",
"prettier": "2.0.2",
"prettier-plugin-apex": "1.3.0",
"semantic-release-cli": "^5.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,css,md,cls}": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}