-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.28 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
64
{
"name": "@sinedied/card",
"version": "1.0.1",
"description": "Yohan Lasorsa's personal card",
"repository": {
"type": "git",
"url": "https://github.com/sinedied/sinedied.git"
},
"publishConfig": {
"access": "public"
},
"main": "index.js",
"bin": {
"card": "bin/card.js"
},
"scripts": {
"start": "node bin/card.js",
"build": "node build-card.js",
"lint": "xo",
"lint:fix": "xo --fix",
"release": "semantic-release",
"release:check": "semantic-release --dry-run"
},
"keywords": [
"personal",
"card"
],
"author": {
"name": "Yohan Lasorsa",
"url": "https://twitter.com/sinedied"
},
"homepage": "https://github.com/sinedied/sinedied",
"bugs": {
"url": "https://github.com/sinedied/sinedied/issues"
},
"license": "MIT",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"boxen": "^4.2.0",
"chalk": "^4.1.0",
"semantic-release": "^17.1.1",
"xo": "^0.32.1"
},
"xo": {
"prettier": true,
"space": true
},
"prettier": {
"bracketSpacing": true
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/git"
],
"branch": "master"
},
"files": [
"bin",
"index.js",
"text"
]
}