-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
64 lines (64 loc) · 1.56 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
{
"name": "apper",
"description": "Plug and play, restful, real-time application framework for single page apps",
"homepage": "https://github.com/asyncanup/apper",
"version": "2.5.0",
"author": {
"name": "Anup Bishnoi",
"email": "[email protected]"
},
"dependencies": {
"debug": "1.0.4",
"underscore": "1.6.0",
"portfinder": "0.2.1",
"socket.io": "1.1.0",
"express": "4.8.2",
"requirejs": "2.1.14",
"amdefine": "0.1.0",
"uglify-js": "2.4.15",
"shouldbe": "1.0.0",
"json5": "0.2.0",
"minimist": "0.2.0",
"opener": "1.3.0"
},
"keywords": [
"convention",
"framework",
"web",
"REST",
"restful",
"router",
"app",
"api",
"subapp",
"mount",
"realtime",
"WebSockets",
"sockets"
],
"repository": {
"type": "git",
"url": "git://github.com/async/apper"
},
"main": "index",
"bin": {
"apper": "./bin/apper"
},
"scripts": {
"prepublish": "npm prune",
"coverage": "jscover lib lib-cov && APPER_COVERAGE=1 mocha test --recursive --reporter mocha-lcov-reporter > .tmp-coverage && cd lib && cat ../.tmp-coverage | ../node_modules/coveralls/bin/coveralls.js && cd .. && rm -rf lib-cov .tmp-coverage",
"test": "DEBUG=apper:test mocha --recursive",
"deploy": "git push && git push --tags && npm publish"
},
"engines": {
"node": "*"
},
"license": "MIT",
"devDependencies": {
"coveralls": "2.11.1",
"mocha-lcov-reporter": "0.0.1",
"body-parser": "1.6.2",
"socket.io-client": "1.1.0",
"supertest": "0.13.0"
}
}