-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.38 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
{
"name": "@CheckmarxDev/ast-cli-javascript-wrapper",
"version": "0.0.122",
"description": "AST CLI Javascript wrapper",
"main": "dist/main/wrapper/CxWrapper.js",
"typings": "dist/main/wrapper/CxWrapper.d.ts",
"files": [
"dist/main/**/*",
"README.md"
],
"dependencies": {
"log4js": "^6.9.1"
},
"scripts": {
"build": "tsc",
"postbuild": "copyfiles -u 1 src/main/wrapper/resources/cx* dist/;copyfiles -u 1 src/tests/data/* dist/;",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"test": "copyfiles -u 1 src/tests/data/* dist/; tsc && jest"
},
"repository": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper.git",
"author": "Jay Nanduri",
"license": "ISC",
"bugs": {
"url": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper/issues"
},
"homepage": "https://github.com/CheckmarxDev/ast-cli-javascript-wrapper#readme",
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"copyfiles": "^2.4.1",
"eslint": "8.1.0",
"jest": "^29.7.0",
"jest-cli": "29.7.0",
"ts-jest": "^29.2.2",
"ts-mockito": "^2.6.1",
"typescript": "^5.6.3"
},
"overrides": {
"bluebird": "3.7.2"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}