Skip to content

Commit

Permalink
[AnyWeaver-JS] Fix for Windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
joaobispo committed Dec 31, 2024
1 parent 282b305 commit 60b0381
Showing 1 changed file with 71 additions and 71 deletions.
142 changes: 71 additions & 71 deletions AnyWeaver-JS/package.json
Original file line number Diff line number Diff line change
@@ -1,73 +1,73 @@
{
"name": "anyweaver-js",
"version": "0.0.1",
"description": "A generic source-to-source compiler written in Typescript",
"type": "module",
"files": [
"api",
"code",
"src-api",
"src-code",
"java-binaries",
".gitignore",
"jest.config.json",
"package.json",
"tsconfig.jest.json",
"tsconfig.json"
],
"bin": {
"anyweaver-js": "./code/index.js"
},
"scripts": {
"run": "node ./code/index.js",
"build": "tsc -b src-api src-code",
"build:api": "tsc -b src-api",
"build:code": "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": "npx lara-java-dist --jsSourceFolder api --jsDestinationFolder ../AnyWeaver/resources/anyweaver/ --javaClassname AnyWeaverApiJsResource --javaPackageName pt.up.fe.specs.anycompiler.weaver --javaDestinationFolder ../AnyWeaver/src/pt/up/fe/specs/anycompiler/weaver/ --javaResourceNamespace anyweaver",
"build-interfaces": "npx lara-build-interfaces --input ../AnyWeaver/src/pt/up/fe/specs/anycompiler/weaver/AnyWeaver.json --lara @specs-feup/lara/LaraJoinPointSpecification.json --output src-api/Joinpoints.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/anyweaver.git",
"directory": "AnyWeaver-JS"
},
"keywords": [
"source-to-source",
"compiler",
"metaprogramming"
],
"author": "L. Sousa",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/specs-feup/anyweaver/issues"
},
"homepage": "https://github.com/specs-feup/anyweaver#readme",
"dependencies": {
"@specs-feup/lara": "^3.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/java": "^0.9.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@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"
}
"name": "anyweaver-js",
"version": "0.0.1",
"description": "A generic source-to-source compiler written in Typescript",
"type": "module",
"files": [
"api",
"code",
"src-api",
"src-code",
"java-binaries",
".gitignore",
"jest.config.json",
"package.json",
"tsconfig.jest.json",
"tsconfig.json"
],
"bin": {
"anyweaver-js": "./code/index.js"
},
"scripts": {
"run": "node ./code/index.js",
"build": "tsc -b src-api src-code",
"build:api": "tsc -b src-api",
"build:code": "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": "npx lara-java-dist --jsSourceFolder api --jsDestinationFolder ../AnyWeaver/resources/anyweaver/ --javaClassname AnyWeaverApiJsResource --javaPackageName pt.up.fe.specs.anycompiler.weaver --javaDestinationFolder ../AnyWeaver/src/pt/up/fe/specs/anycompiler/weaver/ --javaResourceNamespace anyweaver",
"build-interfaces": "npx lara-build-interfaces --input ../AnyWeaver/src/pt/up/fe/specs/anycompiler/weaver/AnyWeaver.json --lara @specs-feup/lara/LaraJoinPointSpecification.json --output src-api/Joinpoints.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/specs-feup/anyweaver.git",
"directory": "AnyWeaver-JS"
},
"keywords": [
"source-to-source",
"compiler",
"metaprogramming"
],
"author": "L. Sousa",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/specs-feup/anyweaver/issues"
},
"homepage": "https://github.com/specs-feup/anyweaver#readme",
"dependencies": {
"@specs-feup/lara": "^3.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/debug": "^4.1.12",
"@types/java": "^0.9.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@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"
}
}

0 comments on commit 60b0381

Please sign in to comment.