-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
110 lines (110 loc) · 3.38 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
{
"name": "shunter",
"version": "5.0.0-rc5",
"license": "LGPL-3.0",
"description": "A Node.js application built to read JSON and translate it into HTML",
"keywords": [
"proxy",
"front-end",
"dust",
"templates",
"asset pipeline",
"renderer"
],
"author": "Springer Nature",
"contributors": [
"Adam Tavener (http://www.tavvy.co.uk/)",
"Alex Kilgour (http://kil.gr/)",
"Andrew Mee (http://andrewmee.com/)",
"Andrew Walker (http://www.moddular.org/)",
"Ben Miles (https://github.com/benmiles)",
"Craig Webster (http://barkingiguana.com/)",
"Darren Oakley (http://hocuspokus.net/)",
"Dawn Budge (http://www.dawnbudge.co.uk/)",
"Ettore Berardi (http://www.ettomatic.com)",
"Glynn Phillips (http://www.glynnphillips.co.uk/)",
"Hollie Kay (http://www.hollsk.co.uk/)",
"Jack Watkins (https://github.com/sky-jack)",
"John Ollier (https://github.com/johnollier)",
"Jorge Epuñan (http://www.csslab.cl/)",
"José Bolos (https://github.com/joseluisbolos)",
"Jude Robinson (https://github.com/dotcode)",
"Perry Harlock (http://www.phwebs.co.uk/)",
"Phil Booth (https://github.com/philbooth)",
"Prayag Verma (http://www.prayagverma.com/)",
"Rowan Manning (http://rowanmanning.com/)",
"Squil (https://github.com/squil)",
"Thomas Franquelin (https://github.com/ostapneko)",
"Yomi Colledge (http://baphled.wordpress.com)",
"Jon Whitlock (https://github.com/jpw)",
"Allan Wazacz (https://github.com/cazwazacz)"
],
"repository": {
"type": "git",
"url": "https://github.com/springernature/shunter.git"
},
"homepage": "https://github.com/springernature/shunter",
"bugs": "https://github.com/springernature/shunter/issues",
"engines": {
"node": ">=12 <=16"
},
"dependencies": {
"async": "3.2.4",
"body-parser": "1.20.0",
"cheerio": "1.0.0-rc.3",
"connect": "3.7.0",
"cookie-parser": "1.4.6",
"csswring": "7.0.0",
"dateformat": "3.0.3",
"dustjs-helpers": "1.7.4",
"dustjs-linkedin": "2.7.5",
"each-module": "1.2.0",
"ejs": "2.7.4",
"extend": "3.0.2",
"gaze": "1.1.3",
"glob": "7.2.0",
"hasbin": "1.2.3",
"http-proxy": "1.18.1",
"jserve": "2.0.3",
"mincer": "2.1.0",
"mocha-phantomjs-core": "2.1.2",
"node-fetch": "2.6.7",
"postcss": "5.2.17",
"qs": "6.11.0",
"qs-middleware": "1.0.3",
"serve-static": "1.15.0",
"statsd-client": "0.4.7",
"uglify-js": "3.17.2",
"wd": "1.14.0",
"winston": "3.8.2",
"winston-syslog": "2.6.0",
"yargs": "7.1.1"
},
"devDependencies": {
"@springernature/eslint-config": "^4.0.3",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-unicorn": "^13.0.0",
"mocha": "^9.2.2",
"mockery": "^2.1.0",
"node-sass": "^7.0.3",
"nyc": "^15.1.0",
"proclaim": "^3.6.0",
"sinon": "^7.5.0"
},
"main": "./lib/shunter.js",
"bin": {
"shunter-build": "./bin/compile.js",
"shunter-compile": "./bin/compile.js",
"shunter-serve": "./bin/serve.js"
},
"scripts": {
"lint": "eslint '**/*.js'",
"test": "nyc mocha --config=./tests/.mocharc.json ./tests/server",
"test-ci": "mocha --config=./tests/.mocharc.json ./tests/server"
}
}