-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.07 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
{
"name": "sanity-test",
"version": "1.5.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm ci",
"test": "jest --coverage",
"test:silent": "npm run test -- --silent",
"release": "npx standard-version",
"check:lint": "eslint \"src/**/*.*\" -f json -o reports/eslint.json || exit 0",
"format": "prettier . --write",
"lint:fix": "eslint \"src/**/*.*\" --fix",
"prepare": "husky install",
"pre-commit": "npm run test && npx lint-staged",
"commit-msg": "commitlint --edit",
"commit": "git-cz",
"release:github": "DEBUG=conventional-github-releaser npx conventional-github-releaser -p angular"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shrouti1507/sanity-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shrouti1507/sanity-test/issues"
},
"homepage": "https://github.com/shrouti1507/sanity-test#readme",
"dependencies": {
"conventional-github-releaser": "^3.1.5",
"husky": "^8.0.3",
"jest": "^29.3.1"
}
}