forked from openapistack/openapi-client-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.33 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
{
"name": "openapi-client-axios-monorepo",
"description": "Monorepo for openapi-client-axios + typegen",
"private": true,
"version": "7.2.0",
"author": "Viljami Kuosmanen <[email protected]>",
"license": "MIT",
"keywords": [
"openapi",
"swagger",
"client",
"axios",
"frontend",
"browser",
"mock",
"typescript"
],
"homepage": "https://openapistack.co",
"repository": {
"type": "git",
"url": "git+https://github.com/openapistack/openapi-client-axios.git"
},
"bugs": {
"url": "https://github.com/openapistack/openapi-client-axios/issues"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"*.js",
"*.d.ts",
"*.map",
"**/*.js",
"**/*.d.ts",
"**/*.map",
"!*.test.*",
"!**/*.test.*",
"!scripts",
"!node_modules",
"!src",
"!*.config.js",
"!typegen"
],
"devDependencies": {
"husky": "^8.0.1",
"lerna": "^6.4.1",
"markdown-toc": "^1.2.0",
"prettier": "^2.7.1"
},
"scripts": {
"postinstall": "lerna bootstrap",
"build": "lerna run build",
"watch-build": "lerna run watch-build",
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"prettier": "lerna run lint:fix",
"test": "lerna run test --stream",
"toc": "./scripts/generate-toc.js",
"prepare": "husky install"
}
}