-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.52 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.52 KB
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
{
"name": "@jguyon/check",
"version": "0.2.0",
"description": "Composable validation functions",
"license": "MIT",
"author": "Jérôme Guyon <jeromep.guyon@gmail.com>",
"keywords": [
"javascript",
"typescript",
"validation",
"library",
"composable"
],
"homepage": "https://github.com/jguyon/check#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jguyon/check.git"
},
"bugs": {
"url": "https://github.com/jguyon/check/issues"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist docs",
"build": "run-p build:cjs build:esm build:types",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"build:types": "tsc -p tsconfig.types.json",
"docs": "typedoc --mode library --ignoreCompilerErrors --out docs src/index.ts",
"test": "jest",
"format": "prettier --write .",
"prepublishOnly": "run-s test clean build"
},
"dependencies": {
"is-finite": "^1.1.0",
"is-integer": "^1.0.7",
"object.is": "^1.0.0",
"tslib": "^2.0.1"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"husky": "^4.2.5",
"jest": "^25.5.4",
"jest-watch-typeahead": "^0.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.5.1",
"typedoc": "0.17.0-3",
"typescript": "^3.9.7"
}
}