-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 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
{
"name": "eleventy-test",
"version": "1.2.0",
"description": "Multi-configuration testing for Eleventy plugins",
"license": "MIT",
"repository": "https://github.com/Denperidge/eleventy-test.git",
"author": "Denperidge",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"start": "node dist/index.js",
"watch": "npm-run-all --parallel 'build:js --watch' 'build:types -w'",
"build": "npm-run-all --serial build:js build:types",
"build:js": "esbuild src/index.ts --bundle --outfile=dist/index.js --platform=node",
"build:types": "tsc --declaration src/index.ts --emitDeclarationOnly --outDir ./dist",
"test": "ava tests/test.mjs --timeout=90s"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy1.0.2": "npm:@11ty/eleventy@1.0.2",
"@11ty/eleventy2.0.0-canary.8": "npm:@11ty/eleventy@2.0.0-canary.8",
"@11ty/eleventy2.0.1": "npm:@11ty/eleventy@2.0.1",
"@types/node": "^22.10.1",
"ava": "^6.2.0",
"esbuild": "^0.24.0",
"jsdom": "^25.0.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.2"
},
"dependencies": {}
}