forked from weo-edu/express-robots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.66 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
{
"name": "@mixmaxhq/express-robots",
"version": "1.0.0",
"description": "Express middleware for generating your robots.txt",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"ci": "npm test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"prepublishOnly": "if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "semantic-release",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/mixmaxhq/express-robots"
},
"keywords": [
"express",
"robots",
"robots.txt",
"robots"
],
"author": "ashaffer (http://github.com/ashaffer)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/express-robots/issues"
},
"homepage": "https://github.com/mixmaxhq/express-robots",
"dependencies": {},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.3",
"@mixmaxhq/commitlint-jenkins": "^1.4.1",
"@mixmaxhq/semantic-release-config": "^1.2.4",
"chai": "^4.2.0",
"cz-conventional-changelog": "^3.0.2",
"express": "^4.16.4",
"mocha": "^5.2.0",
"semantic-release": "^15.13.31",
"supertest": "^3.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"publishConfig": {
"access": "public"
}
}