-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.9 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.9 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
{
"name": "tchatter",
"version": "0.0.1",
"repository": "https://github.com/ndemengel/tchatter.git",
"scripts": {
"postinstall": "node ./node_modules/bower/bin/bower install",
"start": "./node_modules/forever/bin/forever start --watch --watchIgnore '*.log' --watchIgnore public -l forever.log --append -o app.log -e err.log app.js",
"stop": "./node_modules/forever/bin/forever stop app.js"
},
"devDependencies": {
"adm-zip": "^0.4.4",
"bower": "^1.3.1",
"chai": "^1.9.1",
"chai-as-promised": "^4.1.1",
"forever": "^0.10.11",
"grunt": "^0.4.4",
"grunt-concurrent": "^0.5.0",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-connect": "^0.7.1",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-karma": "^0.8.2",
"grunt-mocha-protractor": "^0.5.2",
"grunt-mocha-test": "^0.10.0",
"grunt-open": "^0.2.3",
"grunt-protractor-runner": "^0.2.4",
"grunt-shell": "^0.6.4",
"grunt-shell-spawn": "^0.3.0",
"karma": "^0.12.2",
"karma-chai": "^0.1.0",
"karma-chai-plugins": "^0.2.1",
"karma-chrome-launcher": "^0.1.3",
"karma-coffee-preprocessor": "^0.2.1",
"karma-coverage": "^0.2.1",
"karma-firefox-launcher": "^0.1.3",
"karma-html2js-preprocessor": "^0.1.0",
"karma-jasmine": "^0.1.5",
"karma-mocha": "^0.1.3",
"karma-phantomjs-launcher": "^0.1.3",
"karma-requirejs": "^0.2.1",
"karma-script-launcher": "^0.1.0",
"karma-sinon": "^1.0.3",
"matchdep": "^0.3.0",
"mocha": "^1.18.2",
"node-mocks-http": "^1.0.3",
"optimist": "^0.6.1",
"phantomjs": "^1.9.7-4",
"proxyquire": "^0.6.0",
"requirejs": "^2.1.11",
"selenium-webdriver": "^2.41.0",
"sinon": "^1.9.0",
"sinon-chai": "^2.5.0"
},
"dependencies": {
"express": "^3.5.1",
"sockjs": "^0.3.9"
},
"webdriverVersions": {
"chromedriver": "2.9",
"selenium": "2.40.0"
}
}