-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "WebControlPanel",
"private": true,
"version": "0.0.0",
"description": "A hub for controlling and monitoring 3D printers",
"repository": "https://github.com/StratusPrint/WebControlPanel",
"license": "MIT",
"devDependencies": {
"bower": "^1.3.1",
"grunt": "^0.4.5",
"grunt-contrib-clean": "^0.6",
"grunt-contrib-cssmin": "^0.12",
"grunt-contrib-jshint": "^0.11",
"grunt-contrib-less": "^1.2.0",
"grunt-contrib-uglify": "^0.9.2",
"grunt-contrib-watch": "^0.6",
"grunt-html": "^5.0.0",
"grunt-html-validation": "^0.1.18",
"grunt-jscs": "^2",
"grunt-log-headers": "^1",
"grunt-newer": "^1",
"grunt-ng-annotate": "^2.0.1",
"grunt-run": "^0.3",
"grunt-scss-lint": "^0.3.8",
"jshint": "^2.6",
"jshint-stylish": "^2.1.0",
"load-grunt-tasks": "^3",
"protractor": "^2.1.0",
"shelljs": "^0.2.6",
"time-grunt": "^1"
},
"scripts": {
"grunt": "./node_modules/.bin/grunt",
"postinstall": "bower install",
"prestart": "npm install",
"pretest": "npm install",
"test-single-run": "grunt",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor e2e-tests/protractor.conf.js"
}
}