-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
41 lines (41 loc) · 942 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
40
41
{
"name": "my-first-hoodie",
"description": "The default/welcome Hoodie app",
"author": "The Hoodie Community and other contributors | http://hood.ie/",
"bugs": {
"url": "https://github.com/hoodiehq/my-first-hoodie/issues"
},
"devDependencies": {
"semantic-release": "^4.3.5"
},
"engines": {
"node": ">=4"
},
"homepage": "https://github.com/hoodiehq/my-first-hoodie",
"keywords": [
"frontend-only",
"hapi",
"hoodie",
"nobackend",
"offline-first"
],
"license": "Apache-2.0",
"main": "www/index.html",
"publishConfig": {
"tag": "next"
},
"release": {
"branch": "next",
"fallbackTags": {
"next": "latest"
}
},
"repository": {
"type": "git",
"url": "https://github.com/hoodiehq/my-first-hoodie.git"
},
"scripts": {
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "echo 'no tests yet'"
}
}