-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
102 lines (102 loc) · 3.09 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
{
"name": "steal-ssr",
"version": "1.1.18",
"description": "steal-ssr - Module stealSSR https://dspeed.eu",
"author": "Frank Lemanschik <frank@dspeed.eu",
"contributors": [
"Watch CONTRIBUTORS.md file",
"Frank Lemanschik <frank@dspeed.eu>"
],
"keywords": [
"Server",
"static site generator",
"preprocessing web server",
"sass",
"less",
"stylus",
"markdown",
"jade",
"ejs",
"coffeescript",
"pug",
"CanJS",
"StealJS",
"DoneJS",
"DietJS",
"ExpressJS"
],
"homepage": "http://dspeed.eu",
"bugs": "https://github.com/steal-server/steal-ssr/issues",
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/steal-server/steal-ssr"
},
"deprecatedDependencies": {
"async": "^2.6.0",
"commander": "^2.9.0",
"express": "^4.0.0",
"download-github-repo": "^0.1.3",
"dssrv-envy-json": "^0.2.1",
"escape-html": "^1.0.3",
"fs-extra": "^7.0.0",
"mime": "2.0.3",
"parseurl": "^1.3.1",
"pause": "^0.1.0",
"send": "^0.16.0",
"steal-ssr-renderers": "^1.3.1",
"basic-auth": "^2.0.0",
"chalk": "^2.0.0",
"cross-spawn-async": "^2.0.0",
"q": "^1.4.1"
},
"directories": {
"doc": "docs"
},
"deprecatedDevDependencies": {
"coveralls-send": "0.0.2",
"dotdotdot": "1.7.0",
"es6-promise": "4.1.1",
"guide-automation": "0.3.11",
"is-appveyor": "1.0.0",
"istanbul": "0.4.5",
"jshint": "2.12.0",
"mocha": "8.2.1",
"mocha-lcov-reporter": "1.3.0",
"mockery": "2.1.0",
"nixt": "0.5.0",
"node-fetch": "1.7.3",
"request": "2.83.0",
"rimraf": "2.6.2",
"should": "13.1.3",
"stream-when": "1.0.0"
},
"scripts": {
"test": "npm install",
"test2": "echo 'TODO: mocha --reporter spec -t 8000' && npm run jshint && npm run mocha --reporter spec -t 8000 && npm run document && npm run test-guides",
"test-guides": "npm run test-quickstart && npm run test-pmo",
"test-quickstart": "guide guides/guide/test.js --local",
"test-pmo": "guide guides/place-my-order/test.js --local",
"jshint": "jshint lib/. bin/donejs test/. --config",
"mocha": "mocha test/test --timeout 120000",
"verify": "echo \"Script ran\"",
"document:watch": "documentjs --watch",
"document": "documentjs -f && cp docs/theme/static/favicon.ico site/favicon.ico",
"publish": "git config credential.helper store && git push origin --all && git push origin --tags",
"release:prerelease": "npm version prerelease && npm publish",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"coverage": "istanbul cover _mocha -- test/test --timeout 120000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js"
},
"license": "MIT",
"preferGlobal": true,
"readmeFilename": "README.md",
"bin": {
"steal-ssr": "./bin/steal-ssr"
},
"engines": {
"node": "^6.11"
}
}