-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
52
53
54
55
56
57
58
59
60
61
{
"name": "pawblock",
"version": "0.1.0",
"description": "Development environment for PawBlock",
"main": "N/A",
"scripts": {
"build": "node build.js",
"format": "prettier --write '**/*.js'",
"format:check": "prettier --list-different '**/*.js'",
"lint": "eslint '**/*.js'",
"release": "yarn install && yarn format:check && yarn lint && yarn build && web-ext lint && web-ext build --overwrite-dest && git archive -o web-ext-artifacts/source-code.zip HEAD",
"start": "yarn install && yarn build && web-ext run --firefox=firefoxdeveloperedition",
"start:chrome": "yarn install && yarn build && web-ext run --target=chromium",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dguo/pawblock.git"
},
"author": "Danny Guo",
"license": "MIT",
"bugs": {
"url": "https://github.com/dguo/pawblock/issues"
},
"homepage": "https://dannyguo.com/pawblock",
"dependencies": {
"bulma": "0.4.4",
"font-awesome": "4.7.0"
},
"devDependencies": {
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"jest": "24.9.0",
"prettier": "2.8.1",
"web-ext": "7.4.0"
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"prettier"
],
"env": {
"browser": true
},
"globals": {
"browser": false
},
"parserOptions": {
"ecmaVersion": 6
},
"rules": {
"no-console": "off"
}
},
"prettier": {
"bracketSpacing": false,
"singleQuote": true,
"trailingComma": "none"
},
"packageManager": "[email protected]"
}