-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
55 lines (55 loc) · 1.71 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
48
49
50
51
52
53
54
55
{
"name": "csrfer",
"version": "0.1.2",
"author": "Luis Fontes",
"license": "MIT",
"description": "Small tool to create CSRF payloads based on vulnerable requests",
"main": "lib/Generator.js ",
"bin": {
"csrfer": "bin/index.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"start": "node lib/cli.js",
"start:dev": "nodemon --watch 'src/**/*.ts' --ignore 'node_modules/**/*' --exec ts-node src/test.ts",
"build": "npm run build:types && tsc --project ./tsconfig.json",
"build:types": "tsc -d --declarationDir types/ --emitDeclarationOnly",
"lint": "eslint 'src/**/*.ts'",
"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",
"deploy": "npm run build && npm publish"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.2",
"@types/he": "^1.1.1",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.21",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.22.0",
"@typescript-eslint/parser": "^2.22.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.0.0",
"eslint-plugin-node": "^11.0.0",
"minimist": ">=1.2.2",
"mocha": "^7.1.2",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"dependencies": {
"he": "^1.2.0",
"yargs": "^15.4.1"
}
}