-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "bookmarklet-platform",
"version": "0.2.1",
"description": "A platform for distributing bookmarklets.",
"repository": "github:ashtonmeuser/bookmarklet-platform",
"author": "Ashton Meuser <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "concurrently -k 'parcel watch src/**.pug' 'serve -d -c serve.json'",
"prebuild": "rm -rf dist/*",
"build": "parcel build 'src/*.pug' --no-source-maps",
"test": "jest --coverage",
"presync": "npm run build",
"sync": "aws s3 sync dist s3://bookmarkl.ink --delete"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
"@eslint/js": "^9.11.1",
"@parcel/transformer-less": "^2.12.0",
"@parcel/transformer-pug": "^2.12.0",
"concurrently": "^9.0.1",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"less": "^4.2.0",
"parcel": "^2.12.0",
"pug": "^3.0.3",
"serve": "^14.2.3"
},
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.js"
]
},
"dependencies": {
"alpinejs": "^3.14.1"
}
}