-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1.34 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
{
"name": "dnssec-interference-study",
"version": "4.2.0",
"description": "DNSSEC Interference Study",
"main": "web-ext-config.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla-extensions/dnssec-interference.git"
},
"author": "Austin Hounsel",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/mozilla-extensions/dnssec-interference/issues"
},
"homepage": "https://github.com/mozilla-extensions/dnssec-interference/README.md",
"dependencies": {
"browserify": "^16.5.2",
"dns-packet": "git+https://git@github.com/ahounsel/dns-packet.git",
"ip-regex": "^4.3.0",
"npm-run-all": "^4.1.5",
"uuid": "^8.3.0",
"web-ext": "^6.5.0"
},
"scripts": {
"build": "npm-run-all clean build:background build:extension build:finalize",
"build:background": "browserify src/index.js -o src/background.js",
"build:extension": "web-ext build",
"build:finalize": "mv web-ext-artifacts/*.zip web-ext-artifacts/dnssec-interference-study.xpi",
"clean": "rm -rf web-ext-artifacts",
"test": "mocha",
"lint": "echo 'lint not implemented'"
},
"devDependencies": {
"ajv": "^6.12.6",
"chai": "^4.3.6",
"eslint": "^7.6.0",
"mocha": "^10.1.0",
"node-fetch": "^2.6.7",
"sinon": "^14.0.1",
"webextensions-api-mock": "^1.0.0"
}
}