-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.32 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
{
"name": "sample-code",
"version": "1.1.6-beta.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "nyc ./node_modules/.bin/ava -v",
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"standard": "standard index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pcholuj/sample-code.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pcholuj/sample-code/issues"
},
"homepage": "https://github.com/pcholuj/sample-code#readme",
"dependencies": {
"express": "^4.16.2",
"js-yaml": "^3.10.0",
"semantic-release": "^12.4.1",
"static-server": "^3.0.0"
},
"release": {
"branch": "master",
"publish": [
{
"path": "semantic-s3-release",
"assets": "assets/**/*",
"bucket": "test"
},
{
"path": "@semantic-release/github"
}
],
"success": [
{
"path": "semantic-s3-release"
}
],
"verifyConditions": [
{
"path": "semantic-s3-release"
}
]
},
"devDependencies": {
"ava": "^0.15.2",
"co-exec": "^1.0",
"codecov": "^1.0.1",
"ghooks": "^1.2.4",
"nyc": "^7.0.0",
"standard": "^7.1.2"
},
"config": {
"ghooks": {
"pre-commit": "npm run standard"
}
}
}