-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 932 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
42
43
44
45
46
47
48
{
"name": "npm-donate",
"version": "0.0.2",
"description": "Support maintainers with a donation and help them continue with activities",
"main": "index.js",
"repository": "[email protected]:bukinoshita/npm-donate.git",
"author": "Bu Kinoshita <[email protected]>",
"license": "MIT",
"keywords": [
"donate",
"donation",
"open source",
"oss",
"pay",
"maintaner",
"credit",
"debit",
"stripe",
"card",
"payment",
"help"
],
"scripts": {
"test": "xo --quiet"
},
"dependencies": {
"axios": "^0.18.1",
"credit-card-prompt": "^0.0.1",
"ora": "^1.3.0"
},
"devDependencies": {
"eslint-config-prettier": "^2.3.0",
"xo": "^0.18.2"
},
"xo": {
"extends": [
"prettier"
],
"rules": {
"camelcase": 0,
"no-return-assign": 0,
"operator-assignment": 0
},
"ignores": [
"example/**/*.js"
]
}
}