-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 931 Bytes
/
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
{
"name": "prisma-schema-dsl",
"version": "2.2.0",
"description": "JavaScript interface for Prisma Schema DSL",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"format": "prettier --write src",
"check-format": "prettier --check src",
"prepare": "npm run build"
},
"keywords": [
"prisma",
"schema",
"dsl",
"javascript",
"ast",
"generator"
],
"license": "MIT",
"dependencies": {
"@prisma/internals": "^4.6.1",
"@types/lodash.isempty": "^4.4.6",
"lodash.isempty": "^4.4.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"prisma-schema-dsl-types": "^1.1.2",
"ts-jest": "^26.4.4",
"ts-toolbelt": "^9.6.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"modulePathIgnorePatterns": [
"dist"
]
}
}