-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.88 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
{
"name": "@specs-feup/coral",
"version": "1.0.0",
"description": "A Rust-like Borrow Checker for C",
"type": "module",
"parserOptions": {
"project": [
"./*/tsconfig.json",
"./tsconfig.*.json"
]
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint .",
"format": "prettier --write .",
"sandbox": "npx clava classic out/src/sandbox.js --config sandbox.xml",
"sandbox:watch": "cross-env DEBUG=\"*\" npx clava classic out/src/sandbox.js --config sandbox.xml -w out/src -w in/sandbox",
"benchmarks": "cross-env DEBUG=\"*\" npx clava classic out/src/benchmarks.js --config benchmarks.xml",
"test": "cross-env DEBUG=\"*\" npx clava classic out/src/test.js --config test.xml"
},
"exports": {
"./*": {
"types": "./out/src/*.d.ts",
"default": "./out/src/*.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/coral.git"
},
"keywords": [
"clava",
"rust",
"c",
"borrow checker",
"static analysis"
],
"author": "",
"bugs": {
"url": "https://github.com/specs-feup/coral/issues"
},
"homepage": "https://github.com/specs-feup/coral#readme",
"dependencies": {
"@specs-feup/clava": "3.0.5",
"@specs-feup/clava-flow": "1.0.0",
"@specs-feup/flow": "1.0.0",
"ansi-colors": "^4.1.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"cross-env": "^7.0.3",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.4.2",
"eslint-plugin-tsdoc": "^0.2.17",
"prettier": "^3.2.5",
"typescript": "^5.3.3"
}
}