-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 930 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 930 Bytes
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
{
"name": "openrasp",
"version": "1.0.5",
"description": "A CLI tool for OpenRASP JavaScript plugins development",
"preferGlobal": true,
"main": "index.js",
"scripts": {
"build": "babel -d dist --presets es2015 lib/environment",
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://rasp.baidu.com",
"bin": {
"rasp": "bin/rasp",
"rasp-check": "bin/rasp-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baidu-security/openrasp-plugin-devtool.git"
},
"bugs": {
"url": "https://github.com/baidu-security/openrasp-plugin-devtool/issues"
},
"author": "OpenRASP Developers <openrasp@baidu.com>",
"license": "BSD",
"dependencies": {
"chai": "^4.0.2",
"commander": "^2.11.0",
"eslint": "^4.1.1",
"mocha": "^5.2.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1"
}
}