forked from groovecoder/data-leak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "data-leak",
"version": "1.0.0",
"description": "A Browser Extension to help detect potentially unsafe data leaving the browser",
"dependencies": {
"url-parse": "^1.1.9"
},
"devDependencies": {
"browserify": "^14.4.0",
"envify": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"web-ext": "^1.10.1"
},
"scripts": {
"build": "MODE=production npm run bundle && web-ext build -s src --overwrite-dest",
"build-dev": "MODE=dev npm run bundle && web-ext build -s src --overwrite-dest",
"bundle": "browserify -d -t envify src/webRequest.js > src/webRequest.bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/groovecoder/data-leak.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/groovecoder/data-leak/issues"
},
"homepage": "https://github.com/groovecoder/data-leak#readme"
}