forked from kintone-labs/kintone-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.32 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
{
"name": "@kintone/kintone-js-sdk",
"version": "0.5.0",
"description": "The SDK of kintone REST API client on node and browser",
"main": "./src/node/main.js",
"browser": "./src/browser/main.js",
"unpkg": "./dist/kintone-js-sdk.min.js",
"license": "MIT",
"author": "Cybozu, Inc.",
"scripts": {
"test-base": "jest ./test/base",
"test-node": "jest ./test/node",
"build": "webpack --mode production",
"watch": "webpack --mode development --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintone/kintone-js-sdk.git"
},
"bugs": {
"url": "https://github.com/kintone/kintone-js-sdk/issues"
},
"homepage": "https://github.com/kintone/kintone-js-sdk#readme",
"dependencies": {
"axios": "0.19.0",
"@babel/polyfill": "7.4.4",
"form-data": "2.5.0",
"tunnel": "0.0.6"
},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "7.0.0",
"@babel/preset-env": "7.0.0",
"@cybozu/eslint-config": "3.0.1",
"babel-loader": "8.0.2",
"eslint": "5.0.0",
"jest": "24.8.0",
"nock": "9.6.0",
"webpack": "4.17.2",
"webpack-cli": "3.1.0"
},
"keywords": [
"kintone",
"app",
"nodejs",
"cybozu",
"cybozu.com",
"kintone.com"
],
"sideEffects": false,
"directories": {
"test": "test"
}
}