This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 1.91 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
62
63
64
65
66
67
68
69
{
"name": "gcp-img",
"version": "0.1.4",
"description": "Lazily load and configure your images from Google Cloud Storage.",
"author": "adrianengine",
"license": "LGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/adrianengine/gcp-img.git"
},
"bugs": {
"url": "https://github.com/adrianengine/gcp-img/issues"
},
"keywords": [
"web-component",
"e2015-modules",
"images",
"google-cloud",
"google-cloud-storage"
],
"main": "index.js",
"module": "index.js",
"scripts": {
"start": "es-dev-server --app-index demo/index.html --node-resolve --open --watch",
"lint:eslint": "eslint --ext .js,.html . --ignore-path .gitignore",
"format:eslint": "eslint --ext .js,.html . --fix --ignore-path .gitignore",
"lint:prettier": "prettier \"**/*.js\" --check --ignore-path .gitignore",
"format:prettier": "prettier \"**/*.js\" --write --ignore-path .gitignore",
"build:min": "terser src/GcpImg.js -o src/gcp-img.min.js",
"lint": "npm run lint:eslint && npm run lint:prettier",
"format": "npm run format:eslint && npm run format:prettier",
"test": "karma start --coverage",
"test:watch": "karma start --auto-watch=true --single-run=false"
},
"devDependencies": {
"@open-wc/eslint-config": "^12.0.0",
"@open-wc/testing": "^4.0.0",
"@open-wc/testing-karma": "^4.0.9",
"deepmerge": "^4.3.1",
"es-dev-server": "^2.1.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.0.2",
"prettier": "^3.0.2"
},
"eslintConfig": {
"extends": [
"@open-wc/eslint-config",
"eslint-config-prettier"
]
},
"prettier": {
"singleQuote": true,
"arrowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}