-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "@gucciogucci/contented",
"description": "A library to coerce values at run-time.",
"version": "5.2.0",
"author": "Gucci <[email protected]>",
"license": "LGPL-3.0-only",
"types": "dist/index.d.ts",
"main": "dist/index.js",
"files": [
"/dist"
],
"scripts": {
"pretest": "npm run ts:check",
"test": "c8 --reporter=lcov --reporter=text --include=src uvu -r tsm src .test.ts",
"build": "tsc --build tsconfig.build.json",
"ts:check": "tsc --noEmit",
"prepare": "husky install",
"dep:upgrade:major": "npx npm-check-updates -u",
"dep:upgrade:minor": "npm run dep:upgrade:major -- --target minor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GuccioGucci/contented.git"
},
"keywords": [
"data",
"typescript",
"schema",
"runtime",
"external",
"coercion",
"coerce",
"type-inference"
],
"bugs": {
"url": "https://github.com/GuccioGucci/contented/issues"
},
"homepage": "https://github.com/GuccioGucci/contented#readme",
"devDependencies": {
"@types/node": "^18.18.8",
"c8": "^8.0.1",
"fast-check": "^3.13.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"tsm": "^2.3.0",
"typescript": "^5.2.2",
"uvu": "^0.5.6"
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
},
"engines": {
"node": ">= 18.18.2"
}
}