-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "xxexploiter",
"version": "0.1.8",
"description": "XXE Attack Tool",
"main": "dist/cli.js ",
"bin": {
"xxexploiter": "dist/cli.js"
},
"scripts": {
"start": "node dist/index.js",
"start:dev": "ts-node src/bump_version.ts && nodemon --watch 'src/**/*.ts' --ignore 'node_modules/**/*' --exec ts-node src/test.ts",
"build": "ts-node src/bump_version.ts && tsc --project ./tsconfig.json && chmod +x dist/cli.js",
"mocha": "mocha -r ts-node/register tests/**/*.test.ts --exit",
"test": "NODE_ENV=test nyc npm run mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov -t $CODECOV_TOKEN",
"release:patch": "npm run test && npm version patch && npm run build && npm publish"
},
"author": "Luis Fontes",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"express": "^4.18.1",
"readline": "^1.3.0",
"xpath": "^0.0.32",
"yargs": "^17.5.1"
},
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.1",
"@types/yargs": "^17.0.10",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"minimist": "^1.2.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
}
}