-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 751 Bytes
/
Copy pathpackage.json
File metadata and controls
27 lines (27 loc) · 751 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
{
"name": "suri",
"version": "0.5.1",
"private": true,
"description": "Your own link shortener that's easily deployed as a static site (for free)",
"homepage": "https://github.com/jstayton/suri#readme",
"bugs": "https://github.com/jstayton/suri/issues",
"license": "MIT",
"repository": "jstayton/suri",
"scripts": {
"build": "npm run clean && NODE_ENV=production eleventy",
"clean": "del _site",
"dev": "eleventy --serve",
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"release": "release-it --only-version"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.2",
"del-cli": "^5.0.0",
"prettier": "2.8.1",
"release-it": "^15.6.0"
},
"engines": {
"node": ">=14"
}
}