-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
34 lines (34 loc) · 918 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
{
"name": "dat-fox",
"version": "0.1.8",
"description": "A Webextension for the dat:// protocol",
"main": "background.js",
"scripts": {
"postinstall": "cp node_modules/bootstrap/dist/css/bootstrap.css addon/assets/",
"build": "webpack",
"serve": "webpack -w",
"package": "webpack && web-ext build -s addon",
"lint": "eslint background/ common/ dialog/ popup/ window/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sammacbeth/dat-fox.git"
},
"author": "Sam Macbeth",
"license": "MIT",
"bugs": {
"url": "https://github.com/sammacbeth/dat-fox/issues"
},
"homepage": "https://github.com/sammacbeth/dat-fox#readme",
"dependencies": {
"base64-js": "^1.3.0",
"bootstrap": "4.3.1",
"spanan": "2.1.0",
"url-parse": "^1.4.3"
},
"devDependencies": {
"eslint": "^4.19.1",
"web-ext": "^2.8.0",
"webpack": "^2.3.2"
}
}