forked from dantheuber/angular-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "angular-base",
"version": "1.0.0",
"description": "A base project for angular apps",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dantheuber/angular-base.git"
},
"keywords": [
"angular",
"base",
"starter",
"skeleton"
],
"author": "Daniel Essig",
"license": "ISC",
"bugs": {
"url": "https://github.com/dantheuber/angular-base/issues"
},
"dependencies": {
"jspm": "^0.15.7",
"rimraf": "^2.4.2"
},
"devDependencies": {
"chai": "^3.3.0",
"commander": "^2.8.1",
"compass": "^0.1.1",
"debug": "^2.2.0",
"fs-extra": "^0.18.3",
"git-rev": "^0.2.1",
"glob": "^5.0.3",
"gulp": "^3.8.11",
"gulp-compass": "^2.0.4",
"gulp-connect": "^2.2.0",
"gulp-istanbul": "^0.10.1",
"gulp-istanbul-report": "0.0.1",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"gulp-shell": "^0.4.0",
"istanbul": "^0.3.17",
"jshint": "^2.8.0",
"jshint-stylish": "^2.0.1",
"jspm-bower-endpoint": "^0.3.2",
"lodash": "^3.8.0",
"mocha": "^2.2.5",
"node-static": "^0.7.6",
"node-uuid": "^1.4.3",
"open": "0.0.5",
"proxyquire": "^1.7.2",
"sinon": "^1.17.0",
"sinon-chai": "^2.8.0",
"xunit-file": "0.0.6"
},
"jspm": {
"directories": {
"lib": "."
},
"dependencies": {
"angular": "npm:angular@^1.4.1",
"angular-material": "github:angular/bower-material@^0.11.1",
"angular-query-string": "bower:angular-query-string@^1.0.1",
"angular-route": "npm:angular-route@^1.4.1",
"angular-sanitize": "npm:angular-sanitize@^1.4.1",
"clean-css": "npm:clean-css@^3.4.5",
"json": "github:systemjs/plugin-json@^0.1.0",
"ngSmoothScroll": "github:d-oliveros/ngSmoothScroll@^1.7.1",
"systemjs/plugin-json": "github:systemjs/plugin-json@0.1.0"
},
"devDependencies": {
"traceur": "github:jmcriffey/bower-traceur@0.0.88",
"traceur-runtime": "github:jmcriffey/bower-traceur-runtime@0.0.88"
}
}
}