This repository was archived by the owner on Nov 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 KB
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
{
"name": "angular-statisfy",
"version": "2.0.0",
"description": "Prerender an Angular application into static HTML for crawlers",
"keywords": [
"Prerender",
"SEO",
"Angular",
"Static HTML"
],
"author": "Matthias Kunnen",
"private": false,
"main": "lib/cjs/index.js",
"module": "lib/esm5/index.js",
"types": "lib/types/index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatthiasKunnen/angular-statisfy/issues"
},
"homepage": "https://github.com/MatthiasKunnen/angular-statisfy#readme",
"repository": "github:MatthiasKunnen/angular-statisfy",
"scripts": {
"build": "run-s build:*",
"build:clean": "rimraf lib",
"build:ts": "tsc --build tsconfig/tsconfig.bundle.*.json",
"lint": "eslint \"src/**/*.ts\"",
"prepublishOnly": "yarn run build",
"test:ts": "tsc -p tsconfig/tsconfig.strict.json"
},
"dependencies": {
"puppeteer": "^9.1.1"
},
"devDependencies": {
"@matthiaskunnen/eslint-config-typescript-node": "^3.0.0",
"@types/node": "^12.20.13",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "~4.2.4"
},
"files": [
"lib/**/!(*.tsbuildinfo)",
"src"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}