forked from holistics/dbml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.07 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
{
"name": "root",
"private": true,
"scripts": {
"test": "npx lerna run test",
"build": "npx lerna run build",
"bootstrap": "npx lerna bootstrap"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@glen/jest-raw-loader": "^2.0.0",
"babel-jest": "^29.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.15.1",
"jest": "^29.5.0",
"lerna": "^6.6.1",
"lerna-changelog": "^2.2.0"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/holistics/dbml"
},
"jest": {
"setupFiles": [
"./packages/dbml-cli/jestHelpers.js",
"./packages/dbml-core/jestHelpers.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/testSetupFile.js"
],
"transform": {
"^.+\\.js$": "babel-jest",
"\\.(?!json$)[^.]*$": "@glen/jest-raw-loader"
}
},
"dependencies": {
"@babel/runtime": "^7.5.5"
}
}