-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.36 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": "publish-for-npm",
"version": "1.0.2",
"description": "Let the CI do the `npm publish` step after the build passes",
"main": "index.js",
"bin": {
"npm-publish": "bin/npm-publish.js"
},
"files": [
"bin",
"src"
],
"scripts": {
"test": "npm run lint",
"commit": "simple-commit-message",
"lint": "standard bin/*.js src/*.js",
"npm-publish": "node bin/npm-publish.js",
"ban": "node --harmony node_modules/.bin/ban",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";",
"run": "./run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codefresh-io/release-to-npm.git"
},
"keywords": [
"release",
"to",
"npm",
"utility",
"build",
"automatic"
],
"license": "MIT",
"homepage": "https://github.com/codefresh-io/release-to-npm#readme",
"devDependencies": {
"ban-sensitive-files": "1.8.3",
"pre-git": "3.10.0",
"simple-commit-message": "2.1.1",
"standard": "8.0.0-beta.3"
},
"dependencies": {
"available-versions": "0.10.0",
"changed-log": "0.11.0",
"npm-utils": "1.7.1"
},
"config": {
"pre-git": {
"commit-msg": [],
"pre-commit": [
"npm run ban",
"npm test"
],
"pre-push": [
"npm run size"
],
"post-commit": [],
"post-merge": []
}
}
}