forked from mobxjs/mobx-angular
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.27 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
{
"name": "ng2-mobx",
"version": "1.1.3",
"description": "Angular 2 connector to MobX",
"main": "dist/ng2-mobx.js",
"typings": "dist/ng2-mobx.d.ts",
"scripts": {
"test": "karma start --single-run",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/500tech/ng2-mobx.git"
},
"keywords": [
"mobx",
"angular2",
"ng2"
],
"author": "Adam Klein <adam@500tech.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/500tech/ng2-mobx/issues"
},
"homepage": "https://github.com/500tech/ng2-mobx#readme",
"dependencies": {
"mobx": "2.6.0"
},
"devDependencies": {
"@angular/core": "2.2.4",
"@angular/common": "2.2.4",
"@angular/compiler": "2.2.4",
"@angular/platform-browser-dynamic": "2.2.4",
"@angular/platform-browser": "2.2.4",
"@types/core-js": "0.9.34",
"@types/jasmine": "2.5.37",
"angular-cli": "1.0.0-beta.19-3",
"jasmine-core": "2.5.2",
"karma": "1.2.0",
"karma-chrome-launcher": "2.0.0",
"karma-cli": "1.0.1",
"karma-jasmine": "1.0.2",
"karma-typescript": "latest",
"rxjs": "5.0.0-rc.4",
"ts-helpers": "1.1.1",
"typescript": "2.0.0",
"zone.js": "0.6.26"
},
"peerDependencies": {
"@angular/core": "^2.0.0"
}
}