forked from forcedotcom/schemas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "@salesforce/schemas",
"version": "1.1.3",
"description": "This repository contains the spec and schema for the Scratch Org Definition Configuration file and `sfdx-project.json` file.",
"main": "index.js",
"files": [
"index.js",
"*.schema.json"
],
"scripts": {
"commit-init": "commitizen init cz-conventional-changelog --save-dev --save-exact --force",
"commit": "git-cz",
"test": "jest",
"prettier": "prettier ./**/*.{js,json,ts,md} --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forcedotcom/schemas.git"
},
"author": "Salesforce",
"license": "ISC",
"bugs": {
"url": "https://github.com/forcedotcom/schemas/issues"
},
"homepage": "https://github.com/forcedotcom/schemas#readme",
"devDependencies": {
"@commitlint/cli": "^7",
"@commitlint/config-conventional": "^7",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"ajv": "^8.11.0",
"husky": "^3.0.2",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"shelljs": "0.8.5"
},
"husky": {
"hooks": {
"pre-commit": "npm run prettier && npm test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"volta": {
"node": "12.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}