forked from payjp/payjp-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.22 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.22 KB
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
{
"name": "payjp",
"version": "1.4.0",
"description": "PAY.JP node.js bindings",
"main": "built/index.js",
"types": "built/index.d.ts",
"keywords": [
"PAY.JP",
"payment processing",
"credit cards",
"api"
],
"scripts": {
"test": "npm run lint && npm run build && npm run mocha",
"build": "tsc",
"lint": "npm run lint:base -- .",
"lint:base": "eslint --ignore-path .gitignore --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"mocha": "mocha --timeout=10000",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/payjp/payjp-node.git"
},
"author": "PAY.JP <support@pay.jp> (https://pay.jp)",
"contributors": [
"Daiki Arai <darai0512@yahoo.co.jp>",
"Yoichi Fujimoto <wozozo@gmail.com>"
],
"license": "MIT",
"engines": {
"node": ">=6"
},
"devDependencies": {
"@types/superagent": "3.8.3",
"@typescript-eslint/eslint-plugin": "1.6.0",
"@types/prettier": "1.16.1",
"@typescript-eslint/parser": "1.6.0",
"eslint": "5.15.1",
"eslint-config-prettier": "4.1.0",
"mocha": "^6.0.2",
"typescript": "3.4.5",
"prettier": "1.17.1"
},
"dependencies": {
"superagent": "3.8.3"
}
}