forked from uservidya/java-mag-angularjs-article
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 897 Bytes
/
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
{
"name": "ngCube",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"pretest": "http-server app/ & echo $! > pid",
"test": "karma start --single-run --browsers PhantomJS",
"posttest": "kill `cat pid`;rm pid"
},
"repository": {
"type": "git",
"url": "git://github.com/angularjs-de/ng-cube.git"
},
"keywords": [
"angularjs",
"article",
"examples"
],
"author": "Robin Böhm, Philipp Tarasiewicz",
"license": "MIT",
"bugs": {
"url": "https://github.com/angularjs-de/ng-cube/issues"
},
"devDependencies": {
"karma": "0.10.8",
"karma-ng-scenario": "0.1.0",
"karma-ng-html2js-preprocessor": "0.1.0",
"gulp-util": "~2.2.13",
"gulp": "~3.5.0",
"gulp-ng-html2js": "~0.1.4",
"gulp-ngmin": "~0.1.2",
"gulp-uglify": "~0.2.0",
"gulp-concat": "~2.1.7",
"gulp-clean": "~0.2.4"
}
}