-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.36 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
44
45
46
47
48
49
50
51
{
"name": "jsonovich",
"version": "2.1.2",
"description": "A webextension for Firefox. Pretty-prints JSON content in the browser for easy, unobtrusive viewing.",
"keywords": [
"json",
"viewer",
"webextension",
"firefox"
],
"license": "MPL-2.0",
"author": "Michael J. Giarlo",
"contributors": [
"William Elwood <we9@kent.ac.uk>"
],
"homepage": "https://github.com/JSONovich/jsonovich#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/JSONovich/jsonovich.git"
},
"bugs": {
"url": "https://github.com/JSONovich/jsonovich/issues"
},
"private": true,
"engines": {
"npm": ">=5"
},
"scripts": {
"build": "gulp",
"install": "npm ls --parseable --global gulp-cli >/dev/null || npm install --global gulp-cli",
"test": "gulp lint",
"preversion": "npm test",
"version": "gulp version && git add -u",
"postversion": "git push --follow-tags && gulp publish"
},
"devDependencies": {
"addons-linter": "^0.37.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.2",
"gulp-if": "^2.0.2",
"gulp-json-modify": "^1.0.2",
"gulp-json-validator": "^1.2.0",
"gulp-newer": "^1.4.0",
"gulp-stylelint": "^6.0.0",
"gulp-vinyl-zip": "^2.1.0",
"import-lazy": "^3.1.0",
"sign-addon": "^0.3.0",
"stylelint": "^9.1.1",
"stylelint-config-standard": "^18.1.0"
}
}