-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 918 Bytes
/
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
{
"name": "@oceanprotocol/art",
"version": "3.2.0",
"description": "Ocean Protocol's brand assets for community distribution.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it",
"changelog": "auto-changelog -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oceanprotocol/art.git"
},
"author": "Matthias Kretschmann <matthias@bigchaindb.com>",
"license": "CC-BY-4.0",
"bugs": {
"url": "https://github.com/oceanprotocol/art/issues"
},
"homepage": "https://oceanprotocol.com",
"devDependencies": {
"auto-changelog": "^2.3.0",
"release-it": "^14.10.0"
},
"release-it": {
"hooks": {
"after:bump": "npm run changelog"
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}