-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "kinpost",
"version": "1.0.0",
"description": "Kinpost is custom JavaScript file uploader for Kintone.",
"main": "lib/index.js",
"repository": "git@github.com:t-kojima/kinpost.git",
"author": "t-kojima <t-kojima@hokuichi-e.com>",
"license": "MIT",
"keywords": [
"kintone"
],
"homepage": "https://github.com/t-kojima/kinpost",
"bugs": {
"url": "https://github.com/t-kojima/kinpost/issues"
},
"engines": {
"node": ">=8.9"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.1.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.10.0",
"mocha": "^5.2.0",
"prettier": "^1.13.7"
},
"dependencies": {
"axios": "^0.18.0",
"form-data": "^2.3.2"
},
"files": [
"lib"
],
"scripts": {
"test": "mocha --recursive test"
}
}