-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.06 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
{
"name": "ts-guards",
"version": "0.6.0",
"description": "A collection of basic type guards.",
"author": "Matthieu Bosquet",
"license": "MIT",
"keywords": [
"Type Guards",
"Asserts",
"Runtime Validation",
"TypeScript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./assert": "./dist/assert/index.mjs"
},
"typesVersions": {
"*": {
"assert": [
"dist/assert/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"audit": "npm audit --production --audit-level=high",
"build": "tsc",
"lint:eslint": "eslint --cache --fix --ignore-path .gitignore .",
"lint:prettier": "prettier --write --ignore-path .gitignore '**/*.{css,html,json,md,mdx,yml}'",
"lint": "npm run lint:eslint && npm run lint:prettier",
"prepare": "git config --local core.hooksPath .githooks/",
"prepublishOnly": "npm run audit && npm ci --ignore-scripts && npm run build && npm run test",
"start": "npm run build -- --watch",
"test": "jest --config .jestrc.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthieubosquet/ts-guards.git"
},
"bugs": {
"url": "https://github.com/matthieubosquet/ts-guards/issues"
},
"homepage": "https://github.com/matthieubosquet/ts-guards#readme",
"devDependencies": {
"@solid/eslint-config-base": "^0.3.0",
"@tsconfig/node12": "^1.0.9",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.4",
"jest-circus": "^27.2.4",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}