-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.42 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
{
"name": "ppfang",
"version": "0.0.0-development",
"description": "A service which detects prototype pollution in libraries",
"main": "index.js",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"prepare": "husky install",
"commit": "git-cz",
"semantic-release": "semantic-release --branches main"
},
"author": "Alex Cuciureanu",
"license": "MIT",
"bin": {
"ppfang": "./index.js"
},
"type": "module",
"dependencies": {
"@supercharge/promise-pool": "^3.1.1",
"axios": "^1.6.7",
"commander": "^13.0.0",
"generic-pool": "^3.9.0",
"puppeteer": "^23.11.1"
},
"devDependencies": {
"cz-conventional-changelog": "^3.3.0",
"git-cz": "^4.9.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"semantic-release": "^24.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/acuciureanu/ppfang.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {},
"testEnvironment": "node"
}
}