-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.1 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
{
"name": "detect-wagtail",
"version": "0.1.0",
"main": "./src/detect-wagtail.js",
"files": [
"src/detect-wagtail.js"
],
"description": "Detect whether a site or page is built with Wagtail",
"author": "Thibaud Colas",
"license": "MIT",
"homepage": "https://github.com/thibaudcolas/detect-wagtail",
"repository": {
"type": "git",
"url": "git+https://github.com/thibaudcolas/detect-wagtail.git"
},
"bugs": {
"url": "https://github.com/thibaudcolas/detect-wagtail/issues"
},
"keywords": [
"detect-wagtail",
"detect",
"wagtail"
],
"devDependencies": {
"eslint": "8.56.0",
"jest": "29.7.0",
"prettier": "3.2.4"
},
"scripts": {
"prepare": "./.githooks/deploy.sh",
"lint": "eslint --report-unused-disable-directives . && prettier --check '**/?(.)*.{md,css,scss,js,json,json5,yaml,yml,html}'",
"format": "prettier --write '**/?(.)*.{md,css,scss,js,json,json5,yaml,yml,html}'",
"test": "jest",
"test:watch": "jest --watch",
"report:package": " npm pack --loglevel notice 2>&1 >/dev/null | sed -e 's/^npm notice //' && rm *.tgz"
}
}