-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "@turingsecure/burp.js",
"version": "0.1.1",
"description": "Client side parser for Burp Suite XML output files.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc --watch",
"start": "tsc",
"lint": "npx eslint ./",
"test": "jest --detectOpenHandles --forceExit"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.9",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.20",
"babel-jest": "^26.6.3",
"eslint": "^7.10.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/turingsecure/burp.js.git"
},
"keywords": [
"burp",
"xml",
"parser",
"security",
"javascript",
"itsec"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"author": "turingsecure",
"license": "MIT",
"bugs": {
"url": "https://github.com/turingsecure/burp.js/issues"
},
"homepage": "https://github.com/turingsecure/burp.js#readme"
}