This repository has been archived by the owner on Jan 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.52 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "ejs-template-server",
"version": "1.0.3",
"author": {
"email": "[email protected]",
"name": "Malte Hallström",
"url": "https://hallstrom.dev"
},
"repository": {
"type": "git",
"url": "https://github.com/SkySails/ejs-template-server.git"
},
"bugs": {
"url": "https://github.com/SkySails/ejs-template-server/issues"
},
"homepage": "https://github.com/SkySails/ejs-template-server",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
},
"license": "MIT",
"scripts": {
"build": "rimraf -rf dist/* && tsc -p tsconfig.json && tsc -p tsconfig.cjs.json",
"postbuild": "./scripts/fixup.sh",
"prepack": "yarn && yarn build && yarn --production",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:e2e": "jest --config ./test/jest-e2e.config.js --detectOpenHandles",
"test:ci": "jest --ci --passWithNoTests"
},
"dependencies": {
"ejs": "^3.1.6"
},
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"jest-junit": "^13.0.0",
"puppeteer": "^11.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"typescript": "^4.5.2"
},
"jest-junit": {
"outputDirectory": "reports"
}
}