-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.84 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.84 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@tripsnek/tmf",
"version": "1.2.6",
"description": "TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"tmf-gen": "./dist/bin/tmf-gen.js"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "npm run clean && tsc -p tsconfig.build.json",
"build:watch": "tsc -p tsconfig.build.json --watch",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts",
"gen-model": "node src/__tests__/scripts/generate.mjs"
},
"keywords": [
"emf",
"typescript",
"eclipse-modeling-framework",
"model-driven-engineering",
"modeling",
"metamodel",
"ecore",
"model-driven",
"code-generation",
"reflection",
"introspection",
"containment"
],
"author": "Daniel Tuohy <danielr2e@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tripsnek/tmf.git"
},
"bugs": {
"url": "https://github.com/tripsnek/tmf/issues"
},
"homepage": "https://github.com/tripsnek/tmf#readme",
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.16.9",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"prettier": "^2.6.2",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"uuid": "^11.1.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
}
}