-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.44 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
{
"name": "@specs-feup/flow",
"version": "1.0.0",
"description": "Control-flow, Data-flow, static-call, and other graphs for Lara.",
"type": "module",
"parserOptions": {
"project": [
"./*/tsconfig.json",
"./tsconfig.*.json"
]
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"lint": "eslint .",
"format": "prettier --write .",
"docs": "typedoc --out docs"
},
"exports": {
"./*": {
"types": "./out/src/*.d.ts",
"default": "./out/src/*.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/flow.git"
},
"keywords": [],
"author": "Pedro Gonçalo Correia",
"bugs": {
"url": "https://github.com/specs-feup/flow/issues"
},
"homepage": "https://github.com/specs-feup/flow#readme",
"dependencies": {
"cytoscape": "^3.30.3"
},
"devDependencies": {
"@types/cytoscape": "^3.21.8",
"@types/node": "^22.9.2",
"@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",
"typedoc": "^0.26.5",
"typescript": "^5.3.3"
}
}