-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.6 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
{
"name": "@paciolan/express-easy-routes",
"version": "0.0.0-semantic-versioning",
"description": "",
"author": "Paciolan",
"license": "MIT",
"main": "src/app.js",
"repository": {
"type": "ssh",
"url": "[email protected]:development/library/javascript/react/express-easy-routes.git"
},
"release": {
"branch": "master",
"repositoryUrl": "[email protected]:development/library/javascript/react/express-easy-routes.git",
"tagFormat": "${version}",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
]
},
"scripts": {
"cz": "git-cz",
"test": "jest --verbose",
"test:changed": "npm run test -- --changedSince HEAD",
"test:coverage": "npm run test -- --coverage",
"lint": "eslint src"
},
"dependencies": {
"glob": "^7.1.4",
"lodash.zip": "^4.2.0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"@types/jest": "^24.0.17",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"express-serve-static-core": "^0.1.1",
"git-cz": "^3.2.1",
"husky": "^3.0.3",
"jest": "^24.8.0",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm run lint && npm run test:changed",
"pre-push": "npm run lint && npm run test:coverage"
}
},
"config": {
"commitizen": {
"path": "./node_modules/git-cz"
}
}
}