-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
27 lines (27 loc) · 968 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
{
"name": "webcompat",
"title": "Web Compat",
"description": "Urgent post-release fixes for web compatibility.",
"license": "MPL-2.0",
"repository": "https://github.com/mozilla/webcompat-addon",
"version": "134.0.0",
"docker-image": "node-lts-latest",
"private": true,
"scripts": {
"autoformat:prettier": "npx prettier --write '**/{*.css,*.html,*.js,*.jsm,*.json,Jakefile}'",
"autoformat:version-number": "npx jake lint:set-package-version",
"autoformat": "./node_modules/.bin/npm-run-all 'autoformat:*'",
"build": "npx jake export-xpi",
"jake": "npx jake",
"lint:package-version-match": "npx jake lint:verify-version-match",
"lint:prettier": "npx prettier --check '**/{*.css,*.js,*.jsm,*.json,Jakefile}'",
"lint": "./node_modules/.bin/npm-run-all 'lint:*'",
"test": "npx jasmine"
},
"devDependencies": {
"jake": "10.9.2",
"jasmine": "5.3.1",
"npm-run-all2": "6.2.3",
"prettier": "2.8.8"
}
}