-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.76 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.76 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
79
80
81
82
83
84
85
86
87
{
"name": "lara-js",
"version": "0.0.1",
"description": "A js port of the popular framework for building source-to-source compilers",
"type": "module",
"bin": {
"lara-build-interfaces": "scripts/build-interfaces.js",
"lara-java-dist": "scripts/java-dist.js"
},
"files": [
"api",
"code",
"src-api",
"src-code",
".gitignore",
"jest.config.json",
"LaraJoinPointSpecification.json",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"scripts": {
"build": "node scripts/copy-folder.js -i src-api/libs -o api/libs && node scripts/copy-folder.js -i src-api/visualization/public -o api/visualization/public && npx tsc -b src-api src-code",
"build:api": "npx tsc -b src-api",
"build:code": "npx tsc -b src-code",
"build:watch": "npm run build -- --watch",
"lint": "eslint .",
"test": "cross-env NODE_OPTIONS='$NODE_OPTIONS --experimental-vm-modules' jest --detectOpenHandles --forceExit",
"test:api": "npm run test -- src-api",
"test:code": "npm run test -- src-code",
"test:cov": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"java-dist": "node scripts/java-dist.js --jsSourceFolder api --jsDestinationFolder ../LaraApi/src-lara/ --javaClassname LaraApiJsResource --javaPackageName pt.up.fe.specs.lara --javaDestinationFolder ../LaraApi/src-java/pt/up/fe/specs/lara/",
"build-interfaces": "node scripts/build-LaraJoinPoint --input LaraJoinPointSpecification.json --output src-api/LaraJoinPoint.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/lara-framework.git",
"directory": "Lara-JS"
},
"keywords": [
"C",
"C++",
"source-to-source",
"compiler",
"metaprogramming"
],
"author": "L. Sousa",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/specs-feup/lara-framework/issues"
},
"homepage": "https://github.com/specs-feup/lara-framework#readme",
"engines": {
"node": ">=18.18"
},
"dependencies": {
"chokidar": "^3.6.0",
"debug": "^4.3.5",
"express": "^4.19.2",
"java": "^0.14.0",
"supports-color": "^9.4.0",
"ws": "^8.17.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/java": "^0.9.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/ws": "^8.5.11",
"@types/yargs": "^17.0.32",
"typescript-eslint": "^8.0.0-alpha.44",
"cross-env": "^7.0.3",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-tsdoc": "^0.3.0",
"jest": "^29.7.0",
"node-notifier": "^10.0.1",
"ts-jest": "^29.2.2",
"typescript": "^5.5.3"
}
}