-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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": "java-slang",
"version": "1.0.13",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist"],
"repository": {
"type": "git",
"url": "git+https://github.com/source-academy/java-slang.git"
},
"license": "Apache-2.0",
"scripts": {
"build": "tsc --build --force",
"test": "jest",
"test:watch": "jest --watch",
"jsdoc": "typedoc --plugin typedoc-plugin-rename-defaults",
"eslint": "eslint --ext \".ts\" src",
"format": "prettier --write src/**/*.ts",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"husky": "^9.0.11",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"prettier": "^3.2.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.12",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-rename-defaults": "^0.7.0",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/lodash": "^4.14.198",
"java-parser": "^2.0.5",
"lodash": "^4.17.21",
"peggy": "^4.0.2"
}
}