-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
126 lines (126 loc) · 3.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "spa-seo-prerenderer",
"version": "2.1.1",
"description": "Pluggable, flexible and agnostic prerenderer for sites and SPAs, optimized for SEO. No code changes required.",
"author": "Alexandre Duarte <[email protected]> (https://github.com/duartealexf)",
"main": "dist/lib/index.js",
"types": "dist/types",
"maintainers": [
"Alexandre Duarte <[email protected]> (https://github.com/duartealexf)"
],
"repository": {
"type": "git",
"url": "https://github.com/duartealexf/spa-seo-prerenderer"
},
"homepage": "https://github.com/duartealexf/spa-seo-prerenderer",
"license": "MIT",
"bugs": {
"url": "https://github.com/duartealexf/spa-seo-prerenderer/issues"
},
"keywords": [
"spa",
"seo",
"prerenderer",
"prerender",
"snapshot",
"cache",
"crawler",
"bot",
"googlebot",
"user-agent",
"useragent",
"user",
"agent"
],
"scripts": {
"standard-version": "standard-version",
"nodemon": "nodemon",
"eslint": "eslint",
"tsc": "tsc",
"nyc": "nyc",
"mocha": "mocha",
"npm-run-all": "npm-run-all",
"lint": "eslint src --ext .ts",
"coverage": "nyc npm run test",
"build": "tsc",
"test": "mocha test/specs/**/*.spec.js",
"prerelease": "npm run build",
"release": "npm publish",
"version": "standard-version && git push --follow-tags",
"dev": "npm-run-all -p build:watch test:watch",
"test:watch": "nodemon --inspect=0.0.0.0:9229 node_modules/mocha/bin/_mocha -- -t 8640000 --colors ${TESTFILE:-test/specs/**/*.spec.js}",
"build:watch": "nodemon -C -e ts -w src --exec 'npm run build'",
"postbuild": "node scripts/postbuild.js"
},
"dependencies": {
"debug": "^4.1.1",
"flatted": "^2.0.1",
"fs-extra": "^8.1.0",
"mongodb": "^3.3.2",
"puppeteer": "^1.19.0",
"puppeteer-core": "^1.17.0",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.19"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/fs-extra": "^8.0.0",
"@types/puppeteer": "^1.19.1",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.3",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"dotenv": "^8.1.0",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.1.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"express": "^4.17.1",
"kill-port": "^1.5.1",
"mocha": "^6.2.0",
"nodemon": "^1.19.1",
"npm-run-all": "^4.1.5",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"standard-version": "^7.0.0",
"typescript": "^3.5.3",
"uuid": "^3.3.3"
},
"engines": {
"node": ">=8.3.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"mocha": {
"timeout": 60000
},
"nyc": {
"all": true,
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
]
},
"nodemonConfig": {
"delay": "1000",
"watch": [
"dist",
"test/client",
"test/server",
"test/specs",
"test/static"
],
"ext": "js ts"
}
}