-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "wss.js",
"version": "0.0.5",
"author": "TinyBox",
"description": "A websocket server for browers",
"contributors": [
{
"name": "Pasquale Boemio",
"email": "[email protected]"
}
],
"main": "./lib/wss.bundle.min.js",
"scripts": {
"test": "./node_modules/.bin/grunt unit-test compile integration-test",
"clean": "./node_modules/.bin/grunt clean",
"develop": "./node_modules/.bin/grunt develop",
"start": "./node_modules/.bin/grunt run-chrome",
"coverage": "./node_modules/.bin/grunt coverage",
"postinstall": "./node_modules/.bin/grunt"
},
"repository": {
"type": "git",
"url": "https://github.com/ufojs/wssjs.git"
},
"license": "MIT",
"dependencies": {},
"devDependencies": {
"karma-mocha": "^0.1.3",
"karma-chrome-launcher": "^0.1.3",
"karma-chai": "^0.1.0",
"coffee-script": "^1.7.1",
"chai": "^1.9.1",
"coffeeify": "^0.6.0",
"rewire": "^2.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-uglify": "^0.4.0",
"grunt-browserify": "^2.0.7",
"grunt-karma": "^0.8.2",
"grunt-shell": "^0.6.4",
"grunt-contrib-clean": "^0.5.0",
"grunt-contrib-watch": "^0.6.1",
"coffee-coverage": "^0.4.2",
"grunt": "^0.4.4",
"grunt-mocha-cli": "^1.8.0",
"grunt-bower-task": "^0.3.4"
}
}