-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.19 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
{
"name": "@miyajan/garoon-rest",
"version": "0.4.2",
"publishConfig": {
"access": "public"
},
"author": {
"name": "miyajan",
"url": "https://github.com/miyajan"
},
"description": "REST API client for Garoon",
"main": "lib/index.js",
"module": "esm/index.js",
"browser": "lib/index.browser.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "npm-run-all -l -s clean -p build:*",
"lint": "run-p -l lint:*",
"prepublishOnly": "npm-run-all -p lint test -s build",
"test": "jest",
"test:ci": "jest --runInBand",
"build:umd_dev": "webpack --mode development",
"build:umd_prod": "webpack --mode production",
"build:compile": "run-p compile",
"clean": "rimraf lib esm umd",
"compile": "run-p -l compile:*",
"compile:esm": "tsc -p tsconfig.esm.json",
"compile:cjs": "tsc",
"fix:lint": "npm run lint:eslint -- --fix",
"fix:md": "prettier --write README.md 'docs/**/*.md'",
"fix": "run-p fix:*",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:md": "prettier --check README.md 'docs/**/*.md'",
"lint:ts": "tsc --noEmit",
"start": "npm run compile:cjs -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miyajan/garoon-rest.git"
},
"files": [
"esm",
"lib",
"umd"
],
"keywords": [
"garoon",
"rest",
"api-client"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/miyajan/garoon-rest/issues"
},
"homepage": "https://github.com/miyajan/garoon-rest",
"engines": {
"node": ">=14.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@cybozu/eslint-config": "^11.0.0",
"@types/core-js": "^2.5.3",
"@types/jest": "^26.0.3",
"@types/js-base64": "^2.3.2",
"@types/node": "^14.0.14",
"@types/qs": "^6.9.3",
"eslint": "^7.3.1",
"jest": "^26.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.5",
"typescript": "^3.9.5",
"webpack": "^5.74.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"axios": "^0.21.2",
"core-js": "^3.6.5",
"js-base64": "^2.6.2",
"qs": "^6.9.4"
}
}