forked from ulfryk/angular-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.71 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
{
"name": "ngts-annotations",
"version": "1.0.5",
"description": "TypeScript 1.8+ annotations (decorators) for AngularJS 1.x",
"repository": {
"type": "git",
"url": "https://github.com/luisvt/ngts-annotations"
},
"scripts": {
"build": "gulp ts",
"karma": "gulp karma-ci-short",
"postinstall": "tsc",
"test": "gulp ci",
"tdd": "gulp karma-tdd",
"coverage": "gulp karma-coverage"
},
"keywords": [
"TypeScript",
"AngularJS",
"decorators",
"annotations"
],
"author": "Luis Vargas <[email protected]>",
"license": "WTFPL",
"dependencies": {
"@types/angular": "^1.5.19",
"@types/angular-resource": "^1.5.6",
"angular": "^1.5.8",
"angular-resource": "^1.5.8",
"cajon": "^0.4.2",
"ts-helpers": "^1.1.1"
},
"devDependencies": {
"@types/angular-mocks": "^1.5.5",
"@types/jasmine": "^2.5.37",
"angular-mocks": "^1.5.7",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"bower": "^1.7.9",
"coveralls": "^2.11.9",
"del": "^2.2.1",
"graceful-fs": "^4.1.4",
"gulp": "^3.9.1",
"gulp-replace": "^0.5.4",
"gulp-sequence": "^0.4.5",
"gulp-sourcemaps": "2.0.0-alpha",
"gulp-tsc": "^1.2.0",
"gulp-tslint": "^6.0.1",
"jasmine-core": "^2.4.1",
"karma": "^1.1.1",
"karma-cajon": "^0.0.1",
"karma-chrome-launcher": "^1.0.1",
"karma-coverage": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.0.4",
"karma-node-modules-middleware": "^1.0.1",
"karma-phantomjs-launcher": "^1.0.1",
"lodash": "^4.13.1",
"merge-stream": "^1.0.0",
"merge2": "^1.0.2",
"require-dir": "^0.3.0",
"tslint": "^3.12.1",
"typescript": "^2.0.6"
}
}