-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.76 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": "@freight-trust/burgess",
"version": "0.0.5",
"description": "master agreement configurator for shipping international",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/freight-trust/burgess.git"
},
"author": {
"name": "sam@freighttrust.com",
"email": "sam@freighttrust.com"
},
"license": "Mozzila Public License 2.0",
"private": false,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ci-publish": "latest",
"conventional-github-releaser": "^3.1.5",
"finepack": "latest",
"git-authors-cli": "latest",
"husky": "latest",
"lint-staged": "latest",
"npm-check-updates": "latest",
"standard-version": "^8.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"scripts": {
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"postrelease": "npm run release:tags && npm run release:github && ci-publish",
"prerelease": "npm run update:check && npm run contributors",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"release": "standard-version -a",
"update:check": "ncu -- --error-level 2",
"update": "ncu -u"
},
"lint-staged": {
"package.json": [
"finepack"
]
},
"bugs": {
"url": "https://github.com/freight-trust/burgess/issues"
},
"homepage": "https://github.com/freight-trust/burgess#readme",
"dependencies": {
"minimist-options": "^4.1.0"
}
}