-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.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
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
{
"name": "cloudifier",
"version": "0.0.0",
"description": "App to manage your cloud hosting",
"keywords": [],
"dependencies": {
"sails": "~0.10.0-rc7",
"sails-disk": "~0.10.0",
"rc": "~0.4.0",
"include-all": "~0.1.3",
"ejs": "~1.0.0",
"grunt": "~0.4.5",
"grunt-sync": "~0.0.4",
"grunt-contrib-copy": "~0.5.0",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-concat": "~0.4.0",
"grunt-sails-linker": "~0.9.5",
"grunt-contrib-jst": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-uglify": "~0.4.0",
"grunt-contrib-cssmin": "~0.9.0",
"grunt-contrib-less": "~0.11.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-coffeelint": "~0.0.8",
"coffee-script": "~1.7.1",
"grunt-mocha-test": "~0.10.2",
"bower": "*",
"aws-sdk": "~2.0.0-rc.14",
"coveralls": "~2.10.0",
"mocha-lcov-reporter": "0.0.1"
},
"devDependencies": {
"mocha": "*",
"chai": "*",
"chai-fuzzy": "*",
"chai-spies": "*",
"supertest": "~0.13.0",
"should": "*",
"karma": "~0.12.16",
"protractor": "~0.23.1",
"http-server": "^0.6.1",
"karma-jasmine": "~0.2.2",
"karma-chrome-launcher": "~0.1.3",
"karma-firefox-launcher": "~0.1.3",
"karma-mocha": "~0.1.3",
"karma-chai": "~0.1.0",
"chai-as-promised": "~4.1.1",
"blanket": "~1.1.6",
"karma-coverage": "~0.2.4",
"karma-coffee-preprocessor": "~0.2.1"
},
"config": {
"blanket": {
"loader": "./node-loaders/coffee-script"
}
},
"scripts": {
"postinstall": "./node_modules/bower/bin/bower install",
"start": "node app.js",
"debug": "node debug app.js",
"test": "grunt coffee && grunt test && node_modules/karma/bin/karma start test/karma.conf.js --no-auto-watch --single-run",
"test-single-run": "karma start test/karma.conf.js --single-run",
"preupdate-webdriver": "npm install",
"update-webdriver": "./node_modules/protractor/bin/webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "./node_modules/protractor/bin/protractor test/protractor-conf.js",
"testall": "npm run test && npm run protractor"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/netantho/cloudifier.git"
},
"author": "Anthony Verez",
"license": "MIT"
}