-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
99 lines (99 loc) · 2.65 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
95
96
97
98
99
{
"name": "@typeofweb/schema",
"version": "0.8.0-10",
"type": "module",
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"browser": "./dist/index.umd.js",
"default": "./dist/index.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"browser": "dist/index.umd.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": "git://github.com/typeofweb/schema",
"bugs": {
"url": "https://github.com/typeofweb/schema/issues"
},
"homepage": "https://github.com/typeofweb/schema#readme",
"author": "Michał Miszczyszyn - Type of Web <hi@typeofweb.com> (https://typeofweb.com/)",
"license": "MIT",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"publishConfig": {
"access": "public"
},
"files": [
"package.json",
"dist",
"LICENSE"
],
"keywords": [
"typescript",
"validation",
"validation-library",
"schema",
"jsonschema",
"ts",
"validations"
],
"devDependencies": {
"@rollup/plugin-commonjs": "21.0.1",
"@rollup/plugin-node-resolve": "13.1.3",
"@rollup/plugin-typescript": "8.3.0",
"@tsconfig/node12": "1.0.9",
"@tsconfig/node14": "1.0.1",
"@typeofweb/eslint-plugin": "0.2.3-0",
"@types/jest": "27.4.0",
"@types/node": "12",
"@types/qs": "6.9.7",
"@types/ramda": "0.27.64",
"all-contributors-cli": "6.20.0",
"eslint": "8.9.0",
"fast-check": "2.22.0",
"husky": "7.0.4",
"jest": "27.5.1",
"lint-staged": "12.3.4",
"prettier": "2.5.1",
"qs": "6.10.3",
"ramda": "0.28.0",
"rimraf": "3.0.2",
"rollup": "2.67.2",
"rollup-plugin-filesize": "9.1.2",
"rollup-plugin-license": "2.6.1",
"rollup-plugin-prettier": "2.2.2",
"rollup-plugin-terser": "7.0.2",
"ts-jest": "27.1.3",
"tsd": "https://github.com/typeofweb/tsd#pkg",
"tslib": "2.3.1",
"typescript": "4.5.5",
"weak-napi": "2.0.2"
},
"scripts": {
"prejest": "yarn build",
"jest": "NODE_OPTIONS=--experimental-vm-modules jest",
"test": "NODE_OPTIONS=--experimental-vm-modules yarn jest --detectOpenHandles --forceExit --passWithNoTests --coverage",
"test:dev": "NODE_OPTIONS=--experimental-vm-modules yarn jest --watch",
"build": "rimraf dist && rollup --config",
"build:watch": "rollup --config --watch",
"prepublishOnly": "yarn build",
"prepare": "husky install"
},
"lint-staged": {
"**/*.ts": [
"yarn test",
"yarn eslint --fix",
"yarn prettier --write"
],
"**/*.{md,js,json}": [
"yarn prettier --write"
]
},
"dependencies": {
"@typeofweb/utils": "0.3.0"
}
}