-
Notifications
You must be signed in to change notification settings - Fork 108
/
package.json
37 lines (37 loc) · 1010 Bytes
/
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
{
"name": "pwnjs",
"version": "1.1.0",
"description": "Browser exploitation library.",
"main": "src/index.js",
"directories": {
"doc": "docs",
"example": "examples"
},
"dependencies": {},
"devDependencies": {
"docdash": "^0.4.0",
"jsdoc": "^3.5.5",
"patch-package": "^3.6.0",
"serve": "^10.1.2",
"uglifyjs-webpack-plugin": "^1.3.0",
"webpack": "^3.12.0",
"webpack-merge": "^4.1.1"
},
"scripts": {
"build": "webpack --config webpack.dev.js && webpack --config webpack.prod.js",
"jsdoc": "jsdoc -c jsdoc.json -R README.md",
"prepare": "patch-package",
"start": "webpack --config webpack.dev.js && serve",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/theori-io/pwnjs.git"
},
"author": "Theori",
"license": "MIT",
"bugs": {
"url": "https://github.com/theori-io/pwnjs/issues"
},
"homepage": "https://github.com/theori-io/pwnjs#readme"
}