-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.86 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
{
"name": "@popsql/monaco-sql-languages",
"version": "0.0.0",
"description": "Bundle of SQL languages for the Monaco Editor",
"repository": "[email protected]:popsql/monaco-sql-languages.git",
"author": "Matthew Peveler <[email protected]>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"exports": {
"require": "./lib/cjs/index.js",
"import": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts"
},
"files": [
"lib"
],
"scripts": {
"build": "rimraf lib && tsc -p tsconfig.cjs.json && tsc -p tsconfig.esm.json",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.5.0",
"@types/jest": "^29.5.1",
"@types/lodash.clonedeep": "^4.5.9",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"babel-jest": "^29.5.0",
"eslint": "^8.40.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "^26.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-sort-destructure-keys": "^1.4.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"monaco-editor": "^0.38.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^4.9"
},
"peerDependencies": {
"monaco-editor": "*"
},
"dependencies": {
"lodash.clonedeep": "^4.5.0"
}
}