-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.86 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
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
{
"name": "leocornus-nodejs-sandbox",
"version": "0.1.4",
"description": "Sandbox to learn Node.js",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"postinstall": "bower install",
"prestart": "npm install",
"start": "http-server -a 0.0.0.0 -p 8900",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor.conf.js",
"test-vows": "vows test/vows/* --spec",
"test": "gulp",
"unit-test": "gulp unit-test",
"e2e-test": "gulp e2e-test",
"wdio-test": "gulp wdio-test",
"express-app": "gulp express-app",
"mocha": "mocha test/mocha/*.js",
"jasmine": "jasmine JASMINE_CONFIG_PATH=test/jasmine.json",
"karma-jasmine": "node node_modules/karma/bin/karma start test/karma.conf.jasmine.js",
"karma-mocha": "node node_modules/karma/bin/karma start test/karma.conf.mocha.js",
"gulp": "gulp",
"browserify": "browserify"
},
"browser": {
"tipso": "./node_modules/tipso/src/tipso.js"
},
"repository": {
"type": "git",
"url": "git://github.com/leocornus/leocornus-nodejs-sandbox.git"
},
"keywords": [
"sandbox",
"playground"
],
"author": "Sean Chen <[email protected]> (http://github.com/seanchen)",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/leocornus/leocornus-nodejs-sandbox/issues"
},
"homepage": "https://github.com/leocornus/leocornus-nodejs-sandbox",
"devDependencies": {
"angular-mocks": "^1.3.15",
"bootstrap": "^3.3.5",
"bower": "^1.5.3",
"browserify": "^11.0.0",
"chai": "^2.3.0",
"d3": "^3.5.16",
"express": "^4.13.3",
"forever": "^0.15.3",
"gulp": "^3.9.0",
"gulp-exit": "0.0.2",
"gulp-jasmine": "^2.1.0",
"gulp-karma": "0.0.4",
"gulp-live-server": "0.0.29",
"gulp-mocha": "^2.1.1",
"gulp-protractor": "^1.0.0",
"gulp-util": "^3.0.5",
"gulp-webdriver": "^1.0.2",
"gulp-webserver": "^0.9.1",
"http-server": "^0.8.5",
"jasmine": "^2.2.1",
"jasmine-core": "^2.3.0",
"jasmine-jquery": "^2.1.1",
"jasmine-spec-reporter": "^2.4.0",
"karma": "^0.12.31",
"karma-chai": "^0.1.0",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-jasmine-jquery": "^0.1.1",
"karma-mocha": "^0.1.10",
"karma-mocha-reporter": "^1.0.2",
"leocornus-visualdata": "0.0.7",
"mocha": "^2.2.4",
"moment": "^2.18.1",
"protractor": "^2.5.1",
"selenium-standalone": "^4.8.0",
"serve-index": "^1.7.2",
"video.js": "^5.7.1",
"vows": "^0.8.1",
"webpack": "^3.5.5",
"webpack-stream": "^3.0.1",
"yahoo-finance-stream": "^0.1.2"
},
"dependencies": {
"jquery": "^2.1.4",
"jquery.cookie": "^1.4.1",
"justified-layout": "^2.1.0",
"nodemw": "^0.7.5",
"tipso": "^1.0.5"
}
}