-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
64 lines (64 loc) · 1.74 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": "@versett/versett-scripts",
"version": "0.0.0-semantically-released",
"description": "Collection of scripts that are useful for all V// projects.",
"main": "index.js",
"scripts": {
"lint": "eslint bin --ext .js",
"release": "yarn && node bin/index.js release",
"test": "yarn lint",
"test:ci": "yarn check --integrity && yarn test && node bin/index.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/versett/versett-scripts.git"
},
"author": "versett.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/versett/versett-scripts/issues"
},
"homepage": "https://github.com/versett/versett-scripts#readme",
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
},
"release": {
"verifyConditions": "condition-circle",
"getLastRelease": "last-release-git"
},
"bin": {
"versett-scripts": "bin/index.js"
},
"dependencies": {
"chalk": "^1.1.3",
"fs-extra": "^8.0.1",
"husky": "^1.3.1",
"lint-staged": "^8.0.4",
"prettier": "^1.7.0"
},
"devDependencies": {
"@versett/eslint-plugin-versett": "^0.12.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.14.1",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.6.4",
"eslint-plugin-prettier": "^3.0.1"
},
"husky": {
"hooks": {
"commit-msg": "node bin/index.js commitmsg ${HUSKY_GIT_PARAMS}",
"pre-commit": "node bin/index.js precommit",
"prepare-commit-msg": "node bin/index.js preparecommitmsg ${HUSKY_GIT_PARAMS}",
"pre-push": "node bin/index.js prepush"
}
},
"engines": {
"node": ">= 10",
"npm": ">= 5.6.0",
"yarn": ">= 1.12.1"
}
}