-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 815 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 815 Bytes
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
{
"name": "foster-checkout",
"private": true,
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint:check": "eslint",
"lint:fix": "eslint --fix",
"format:check": "prettier --check src/web/assets/checkout/**/alpine.js",
"format:fix": "prettier --write src/web/assets/checkout/**/alpine.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FosterCommerce/foster-checkout.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/FosterCommerce/foster-checkout/issues"
},
"homepage": "https://github.com/FosterCommerce/foster-checkout#readme",
"devDependencies": {
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.0.3",
"prettier": "^3.8.1"
}
}