-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.97 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.97 KB
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
{
"name": "socketstream",
"description": "A framework for Realtime Web Apps",
"version": "0.5.3",
"license": "MIT",
"homepage": "http://www.socketstream.org",
"author": "Henrik Vendelbo <henrik@socketstream.org>",
"repository": {
"type": "git",
"url": "https://github.com/socketstream/socketstream"
},
"contributors": [
"Owen Barnes",
"Paul Jensen",
"Alan Milford",
"Addy Osmani",
"nponeccop",
"Gilbert B Garza",
"Craig Jordan Muir",
"David Rosen",
"Michael Lawson"
],
"dependencies": {
"apitree": "1.2.0",
"async": "1.4.2",
"clean-css": "3.3.9",
"colors": "1.1.2",
"connect-redis": "2.4.1",
"cookie": "^0.2.2",
"csurf": "1.8.3",
"debug": "~2.2.0",
"eventemitter2": "0.4.14",
"findup-sync": "^0.3.0",
"glob": "5.0.14",
"micromatch": "2.2.0",
"orchestrator": "0.3.7",
"parseurl": "1.3.0",
"redis": "0.12.1",
"resolve": "~1.1.6",
"send": "0.13.0",
"shortid": "2.2.2",
"uglify-js": "2.4.24",
"utils-merge": "1.0.0",
"uuid": "2.0.1",
"commander": "2.8.1"
},
"devDependencies": {
"chai": "^3.3.0",
"chokidar": "~1.1.0",
"connect-livereload": "~0.5.2",
"conventional-changelog": "^0.4.3",
"cookie-parser": "^1.4.0",
"coveralls": "~2.11.4",
"dgeni": "^0.4.1",
"express-session": "^1.11.3",
"fs-extra": "~0.24.0",
"gently": "~0.10.0",
"grunt": "0.4.5",
"grunt-cli": "0.1.13",
"grunt-concurrent": "~2.0.3",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.11.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-conventional-changelog": "~4.1.0",
"grunt-ngdocs": "~0.2.9",
"istanbul": "~0.3.18",
"jshint": "~2.8.0",
"lolex": "^1.3.1",
"mocha": "~2.3.3",
"notes": "0.0.4",
"npm-dview": "~2.0.0",
"pre-commit": "~1.1.1",
"semver": "~5.0.3",
"shelljs": "~0.5.3",
"should": "~7.1.0",
"sinon": "~1.17.0",
"sinon-chai": "^2.8.0",
"supertest": "~1.1.0",
"vinyl-fs": "~2.0.0"
},
"scripts": {
"cover-test": "node_modules/.bin/istanbul cover -x **/new_project/** node_modules/.bin/_mocha test/unit/**/* && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"checkDependencies": "node_modules/.bin/npm-dview",
"lint": "node_modules/.bin/jshint .",
"notes": "node_modules/.bin/notes",
"build-docs": "node_modules/.bin/dgeni ./src/docs",
"changelog": "node_modules/.bin/conventional-changelog -p angular -i CHANGELOG.md -w",
"test": "node_modules/.bin/mocha test/unit/**/* --reporter spec",
"quick-test": "node_modules/.bin/mocha test/unit/**/* --reporter progress",
"test-debug": "node_modules/.bin/mocha --debug-brk test/unit/**/* --reporter spec"
},
"pre-commit": [
"lint",
"quick-test"
],
"directories": {
"lib": "./lib",
"doc": "./doc"
},
"main": "./index.js",
"engines": {
"node": ">= 0.12.0"
},
"bin": {
"socketstream": "./bin/socketstream"
}
}