-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.26 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
{
"name": "@specs-feup/clava-project-template",
"version": "1.0.0",
"author": "L. Sousa",
"description": "A template for developing projects for Clava in Typescript",
"type": "module",
"scripts": {
"run": "clava dist/main.js -- clang CxxSources/",
"run:watch": "clava dist/main.js -w dist/main.js -- clang CxxSources/",
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint .",
"docs": "typedoc",
"test": "cross-env NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest --detectOpenHandles --forceExit src",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"@specs-feup/clava": "^3.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-tsdoc": "^0.2.17",
"jest": "^29.7.0",
"ts-jest": "^29.2.2",
"typedoc": "^0.26.4",
"typescript": "^5.5.3"
}
}