-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 1.75 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
{
"name": "core-types",
"version": "0.0.0-development",
"description": "Generic type declarations for e.g. TypeScript, GraphQL and JSON Schema",
"author": "Gustaf Räntilä",
"license": "MIT",
"bugs": {
"url": "https://github.com/grantila/core-types/issues"
},
"homepage": "https://github.com/grantila/core-types#readme",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"directories": {},
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=14.13.1 || >=16.0.0"
},
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.prod.json",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"cz": "git-cz"
},
"pre-commit": [
"build",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/grantila/core-types"
},
"keywords": [
"type",
"types",
"generic",
"typescript",
"graphql",
"json",
"schema"
],
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/jest": "^29.5.0",
"cz-conventional-changelog": "^3.3.0",
"jest": "^29.5.0",
"pre-commit": "^1.2.2",
"rimraf": "^4.4.1",
"ts-jest-resolver": "^2.0.1",
"typescript": "5.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"resolver": "ts-jest-resolver",
"extensionsToTreatAsEsm": [
".ts"
],
"testEnvironment": "node",
"coverageReporters": [
"lcov",
"text",
"html"
],
"collectCoverageFrom": [
"<rootDir>/lib/**"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/__snapshots__/"
]
},
"packageManager": "[email protected]"
}