-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 927 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 927 Bytes
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": "catframe",
"version": "0.0.5",
"description": "A categorical framework for (typescript) model transformation",
"scripts": {
"test": "jest",
"typedoc": "typedoc --out ./typedocs --exclude **/node_modules/** --mode modules --excludeExternals --excludeNotExported --excludePrivate --excludeProtected ./src"
},
"keywords": [
"Computational Category Theory",
"Applied Mathematics",
"Algebra",
"Model Transformation",
"Formalization",
"Low Code"
],
"author": "Kai Biermeier",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"jest": "^26.5.2",
"ts-jest": "^26.4.1",
"ts-loader": "^8.0.3",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^4.0.2",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
]
}