-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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
{
"name": "clojurets",
"version": "0.0.2",
"repository": {
"type": "git",
"url": "https://github.com/sortigoza/clojurets.git"
},
"devDependencies": {
"@babel/core": "^7.21.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@jest/globals": "^29.5.0",
"@types/jest": "^28.1.8",
"@types/jsonfile": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"babel-jest": "^29.5.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-literal-checker": "^1.0.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^29.5.0",
"prettier": "^2.0.5",
"prettier-plugin-organize-imports": "^3.2.2",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^8.0.2",
"typescript": "^4.9.5"
},
"scripts": {
"jest": "./node_modules/jest/bin/jest.js --watch",
"test": "./node_modules/jest/bin/jest.js --coverage",
"build": "./node_modules/tsup/dist/cli-node.js src/clojure.ts --format iife,esm --target esnext",
"fmt": "./node_modules/prettier/bin-prettier.js -w .",
"lint": "./node_modules/eslint/bin/eslint.js src"
},
"dependencies": {
"pino": "^8.8.0",
"pino-pretty": "^9.1.1"
}
}