forked from linode/manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "@linode/validation",
"version": "0.54.0",
"description": "Yup validation schemas for use with the Linode APIv4",
"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",
"files": [
"lib"
],
"scripts": {
"start": "concurrently --raw \"tsc -w --preserveWatchOutput\" \"tsup --watch\"",
"build": "concurrently --raw \"tsc\" \"tsup\"",
"lint": "yarn run eslint . --quiet --ext .js,.ts,.tsx",
"typecheck": "tsc --noEmit true --emitDeclarationOnly false",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/linode/manager/tree/develop/packages/validation"
},
"dependencies": {
"@types/yup": "^0.29.13",
"ipaddr.js": "^2.0.0",
"libphonenumber-js": "^1.10.6",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/node": "^12.7.1",
"concurrently": "^9.0.1",
"eslint": "^6.8.0",
"eslint-plugin-sonarjs": "^0.5.0",
"lint-staged": "^15.2.9",
"prettier": "~2.2.1",
"tsup": "^8.2.4"
},
"keywords": [
"linode",
"api",
"validation"
],
"lint-staged": {
"*.{ts,tsx,js}": [
"prettier --write",
"eslint --ext .js,.ts,.tsx"
],
".{ts,tsx}": [
"tsc -p tsconfig.json --noEmit true --emitDeclarationOnly false"
]
},
"author": "Linode LLC",
"license": "Apache-2.0"
}