-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.47 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@goqoo/rest-api-client",
"private": true,
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"module": "esm/index.js",
"browser": "lib/index.browser.js",
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "yarn clean",
"build": "tsc --build --force",
"postbuild": "run-p build:*",
"lint": "run-p -l lint:*",
"prepublishOnly": "run-p build:umd_*",
"test": "jest",
"test:ci": "jest --runInBand",
"build:umd_dev": "rollup -c --environment BUILD:development",
"build:umd_prod": "rollup -c --environment BUILD:production",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf lib esm umd",
"fix:lint": "yarn lint:eslint --fix",
"fix": "run-p fix:*",
"lint:eslint": "eslint 'src/**/*.ts'",
"start": "yarn build --watch"
},
"files": [
"esm",
"lib",
"umd",
"index.mjs"
],
"keywords": [
"kintone",
"rest",
"api-client"
],
"license": "MIT",
"engines": {
"node": ">=14"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@cybozu/eslint-config": "^18.0.3",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@types/core-js": "^2.5.5",
"@types/jest": "^29.5.1",
"@types/js-base64": "^3.0.0",
"@types/mime": "^3.0.1",
"@types/node": "^13.13.52",
"@types/qs": "^6.9.7",
"babel-jest": "^29.5.0",
"comment-json": "^4.2.3",
"eslint": "^8.37.0",
"jest": "^29.5.0",
"lerna": "^6.6.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"rollup": "^3.20.6",
"rollup-plugin-ecma-version-validator": "^0.2.12",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.0.4"
},
"dependencies": {
"@kintone/rest-api-client": "^3.3.9",
"axios": "^0.27.2",
"core-js": "^3.29.1",
"form-data": "^4.0.0",
"js-base64": "^3.7.5",
"mime": "^3.0.0",
"qs": "^6.10.5"
},
"exports": {
".": {
"node": {
"import": "./index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"browser": "./lib/index.browser.js"
},
"./package.json": "./package.json"
}
}