-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "epubcheck-node-ui",
"version": "1.0.2",
"description": "Server for checking epub files",
"main": "node_server/checkserver.js",
"dependencies": {
"commander": "2.2.0",
"express": "4.5.1",
"formidable": "1.0.15",
"socket.io": "1.0.6",
"node-fs": "0.1.7",
"line-reader": "0.2.3",
"serve-static":"1.3.1",
"socket.io-client" : "1.0.6",
"google-closure": "git+https://code.google.com/r/bitwiseman-closure-library-npm/"
},
"devDependencies": {
"grunt": "~0.4.0",
"mocha": "~1.9.0",
"supertest" : "~0.6.0"
},
"scripts": {
"start": "node ./node_server/checkserver.js",
"test": "node ./node_modules/mocha/bin/mocha --reporter tap --timeout 30s ./node_server/test/checkserver_test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/IDPF/epubcheck-node-ui"
},
"bugs": {
"url": "https://github.com/IDPF/epubcheck-node-ui/issues"
},
"homepage": "https://github.com/IDPF/epubcheck-node-ui",
"keywords": [
"epubcheck",
"idpf",
"web",
"epub"
],
"author": {
"name": "Arwen Pond",
"email": "[email protected]"
},
"license": "BSD",
"readmeFilename": "README.md"
}