-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "connect-prerenderer",
"description": "Express/connect middleware to pre-render ajax page for non-ajax browsers, especially using angular.js",
"version": "0.7.2",
"author": "Daishi Kato <[email protected]>",
"dependencies": {
"jsdom": "8.2.0",
"request": "2.69.0"
},
"devDependencies": {
"cookie-parser": "^1.4.1",
"eslint": "^2.5.3",
"express": "^4.13.4",
"karma": "^0.13.22",
"karma-ng-scenario": "~0.1.0",
"karma-phantomjs-launcher": "^1.0.0",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.7"
},
"repository": {
"type": "git",
"url": "https://github.com/dai-shi/connect-prerenderer.git"
},
"keywords": [
"express",
"connect",
"angular"
],
"main": "./connect-prerenderer.js",
"scripts": {
"test": "npm run eslint && npm run mocha && ./runTest.sh && RENDERER_USE_SUBPROCESS=1 npm run mocha && RENDERER_USE_SUBPROCESS=1 ./runTest.sh",
"mocha": "mocha",
"eslint": "eslint ./connect-prerenderer.js ./urlRenderer.js"
},
"license": "BSD-2-Clause",
"engines": {
"node": ">=4"
}
}