This repository was archived by the owner on Jan 2, 2020. 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
54 lines (54 loc) · 1.39 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.39 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
53
54
{
"name": "@khalyomede/prerender",
"version": "0.1.1",
"description": "Prerenders your website into a static, SEO friendly, HTML version.",
"main": "lib/main.js",
"repository": "https://github.com/khalyomede/prerender",
"author": "Khalyomede <khalyomede@gmail.com>",
"license": "MIT",
"private": false,
"devDependencies": {
"@babel/core": "7.*",
"@babel/node": "7.*",
"@babel/plugin-transform-runtime": "7.*",
"@babel/preset-env": "7.*",
"@babel/register": "7.*",
"@babel/runtime": "7.*",
"@stryker-mutator/babel-transpiler": "^2.0.0",
"@stryker-mutator/core": "2.*",
"@stryker-mutator/javascript-mutator": "^2.0.0",
"@stryker-mutator/mocha-framework": "^2.0.0",
"@stryker-mutator/mocha-runner": "^2.0.0",
"@types/node": "12.*",
"chai": "4.*",
"gulp": "4.*",
"gulp-plumber": "1.*",
"gulp-typescript": "5.*",
"mocha": "6.*",
"nyc": "14.*",
"puppeteer": "1.*",
"typescript": "3.*"
},
"scripts": {
"start": "gulp start",
"build": "gulp build && node script/generate-api-doc.js",
"test": "nyc mocha test --require @babel/register",
"mutate": "npx stryker run",
"babel": "babel-node"
},
"dependencies": {
"cli-color": "1.*",
"fancy-format-log": "2.*",
"is-url": "1.*",
"jsdoc-api": "5.*",
"mkdirp": "0.*",
"pretty-bytes": "5.*",
"pretty-ms": "5.*",
"puppeteer-core": "1.*"
},
"files": [
"lib/main.js",
"lib/Prerendering.js",
"lib/Route.js"
]
}