-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.58 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
{
"name": "rbutr-browser-extension",
"version": "0.12.0",
"description": "Get bias-proofed! Use rbutr to Follow inter-website disagreements and keep yourself more fully informed.",
"main": "index.js",
"repository": "github:rbutrcom/rbutr-browser-extension.git",
"author": "rbutr Community",
"license": "LGPL-3.0",
"dependencies": {},
"devDependencies": {
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"htmlhint": "^0.9.13",
"jsdom": "^11.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.1",
"mock-local-storage": "^1.0.2",
"node-sass": "^4.5.2",
"rewire": "^2.5.2",
"stylelint": "^7.10.1",
"stylelint-config-standard": "^16.0.0"
},
"scripts": {
"sass": "node-sass src/scss/main.scss --output src/css --source-map-embed --source-map-contents && node-sass src/scss/platforms.scss --output src/css --source-map-embed --source-map-contents",
"watch:sass": "yarn run sass -- --watch",
"lint:js": "eslint --config .eslintrc.json src",
"lint:style": "stylelint --config .stylelintrc src/scss/*.scss",
"lint:html": "htmlhint --config .htmlhintrc src/**/*.html",
"lint": "yarn run lint:html && yarn run lint:style && yarn run lint:js",
"test": "mocha --colors --sort --check-leaks --use_strict -r mock-local-storage -r jsdom-global/register",
"zip": "mkdir -p build && zip -r build/rbutr.zip ./src/*",
"build": "yarn run lint && yarn run sass && yarn run zip"
}
}