forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.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
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
{
"name": "@linode/api-v4",
"version": "0.119.0",
"homepage": "https://github.com/linode/manager/tree/develop/packages/api-v4",
"bugs": {
"url": "https://github.com/linode/manager/issues"
},
"keywords": [
"linode",
"api",
"sdk",
"api-v4"
],
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/api-v4"
},
"description": "JavaScript wrapper around the Linode APIv4",
"author": "Linode",
"license": "Apache-2.0",
"private": false,
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.js",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./lib": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
},
"./lib/*": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"types": "./lib/index.d.ts",
"browser": "./lib/index.global.js",
"unpkg": "./lib/index.global.js",
"dependencies": {
"@linode/validation": "*",
"axios": "~1.6.8",
"ipaddr.js": "^2.0.0",
"yup": "^0.32.9"
},
"scripts": {
"start": "concurrently --raw \"tsc -w --preserveWatchOutput\" \"tsup --watch\"",
"build": "concurrently --raw \"tsc\" \"tsup\"",
"test": "yarn vitest run",
"lint": "yarn run eslint . --quiet --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit true --emitDeclarationOnly false",
"precommit": "lint-staged"
},
"files": [
"lib"
],
"devDependencies": {
"@types/node": "^12.7.1",
"@types/yup": "^0.29.13",
"axios-mock-adapter": "^1.22.0",
"concurrently": "^4.1.1",
"eslint": "^6.8.0",
"eslint-plugin-ramda": "^2.5.1",
"eslint-plugin-sonarjs": "^0.5.0",
"lint-staged": "^13.2.2",
"prettier": "~2.2.1",
"tsup": "^7.2.0",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx"
],
".{ts,tsx}": [
"tsc -p tsconfig.json --noEmit true --emitDeclarationOnly false"
]
}
}