-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 KB
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
{
"version": "0.0.0",
"name": "libdweb-template",
"description": "Template for Experimental Firefox WebExtensions using libdweb APIs.",
"keywords": [
"libdweb",
"firefox",
"webextension",
"addon"
],
"license": "MIT",
"dependencies": {
"libdweb": "https://github.com/mozilla/libdweb.git"
},
"devDependencies": {
"lint-staged": "^7.2.0",
"prettier": "^1.14.0",
"tape-ext": "latest",
"web-ext": "2.8.0"
},
"scripts": {
"test": "tape-ext 'test/*/manifest.json'",
"build": "web-ext build --ignore-files !node_modules --ignore-files !node_modules/libdweb --ignore-files !node_modules/libdweb/src --ignore-files !node_modules/libdweb/src/**",
"start": "MOZ_DISABLE_CONTENT_SANDBOX=1 web-ext run --firefox=nightly",
"dev": "MOZ_DISABLE_CONTENT_SANDBOX=1 web-ext run --firefox=nightly --browser-console --url about:debugging",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --parser flow --no-semi --write",
"git add"
]
}
}