-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.67 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
{
"name": "dssrv-prerender",
"version": "1.3.5",
"description": "pre-processor engine that powers the Steal Server",
"repository": {
"type": "git",
"url": "https://github.com/dssrv/prerender.git"
},
"main": "./lib/dssrv-prerender",
"scripts": {
"test": "npm install",
"test2": "npm run jshint && npm run mocha",
"jshint": "jshint lib/. bin/dssrv test/. --config",
"mocha": "mocha test/ --timeout 120000",
"verify": "echo \"Script ran $1 $2\"",
"publish": "git push origin && 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",
"engine-deps": "install-engine-dependencies",
"coverage": "istanbul cover _mocha -- test/ --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/ --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js"
},
"author": "Frank Lemanschik <[email protected]>",
"contributors": [
"Kenneth Ormandy <[email protected]>",
"Frank Lemanschik <[email protected]>"
],
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.0.0",
"coffee-script": "^1.11.0",
"ejs": "^2.3.4",
"harp-minify": "^0.4.0",
"less": "^2.5.3",
"lodash": "^4.16.6",
"lru-cache": "^4.0.0",
"marked": "^1.0.0",
"node-sass": "^5.0.0",
"postcss": "^8.0.0",
"stylus": "^0.54.5",
"pug": "^2.0.0-alpha6",
"through": "2.3.8"
},
"devDependencies": {
"jshint": "2.9.6",
"should": "13.2.3",
"mocha": "8.2.1"
}
}