forked from b091/ts-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.96 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
{
"name": "ts-skeleton",
"description": "Skeleton app with typescript",
"repository": {
"type": "git",
"url": "[email protected]:b091/ts-skeleton.git"
},
"version": "0.4.0",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"browser-sync": "~2.11.2",
"chai": "~3.5.0",
"del": "~2.2.0",
"eslint": "~2.5.3",
"gulp": "~3.9.1",
"gulp-directive-replace": "git+https://github.com/b091/gulp-directive-replace.git",
"gulp-eslint": "~2.0.0",
"gulp-ng-annotate": "~2.0.0",
"gulp-protractor": "~2.2.0",
"gulp-tslint": "~4.3.4",
"gulp-typedoc": "~1.2.1",
"jspm": "~0.16.31",
"karma": "~0.13.22",
"karma-chai-sinon": "~0.1.5",
"karma-coverage": "~0.5.5",
"karma-jspm": "~2.1.0",
"karma-junit-reporter": "~0.4.1",
"karma-mocha": "~0.2.2",
"karma-mocha-reporter": "^2.0.0",
"karma-phantomjs-launcher": "~1.0.0",
"mocha": "~2.4.5",
"phantomjs-prebuilt": "~2.1.7",
"protractor": "~3.2.2",
"run-sequence": "~1.1.5",
"sinon": "~1.17.3",
"sinon-chai": "~2.8.0",
"tslint": "~3.6.0",
"typescript": "^1.8.9",
"typings": "~0.7.9"
},
"engines": {
"node": ">=5.6.0"
},
"scripts": {
"test": "gulp test",
"postinstall": "jspm install && typings install && webdriver-manager update"
},
"jspm": {
"directories": {
"packages": "vendor/jspm_packages"
},
"configFile": "jspm.conf.js",
"dependencies": {
"angular": "github:angular/bower-angular@^1.5.3",
"angular-toastr": "github:Foxandxss/angular-toastr@^1.7.0",
"angular-ui-router": "github:angular-ui/ui-router@^0.2.18",
"bootstrap": "github:twbs/bootstrap@^3.3.6"
},
"devDependencies": {
"angular-mocks": "github:angular/bower-angular-mocks@^1.5.3",
"clean-css": "npm:clean-css@^3.4.10",
"css": "github:systemjs/plugin-css@^0.1.20",
"ts": "github:frankwallis/[email protected]",
"typescript": "npm:[email protected]"
}
}
}