forked from mobxjs/mobx-angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 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
{
"name": "mobx-angular",
"version": "1.8.1",
"description": "Angular connector to MobX (2 and above)",
"jsnext:main": "dist/mobx-angular.js",
"module": "dist/mobx-angular.js",
"main": "dist/mobx-angular.umd.js",
"typings": "dist/mobx-angular.d.ts",
"scripts": {
"test": "karma start --single-run",
"tdd": "karma start",
"lint": "tslint lib/**/*.ts",
"rollup": "rollup -c rollup.config.js dist/mobx-angular.js > dist/mobx-angular.umd.js",
"clean": "rimraf dist",
"build": "npm run lint && npm run clean && ngc && npm run rollup",
"prepublish": "npm run build && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobxjs/mobx-angular.git"
},
"keywords": [
"mobx",
"angular2",
"ng2",
"angular",
"ng2-mobx",
"angular-mobx",
"angular2-mobx",
"mobx-angular",
"mobx-angular2",
"mobx-ng2",
"state management",
"mobxjs"
],
"files": [
"dist/"
],
"author": "Adam Klein <adam@500tech.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mobxjs/mobx-angular/issues"
},
"homepage": "https://github.com/mobxjs/mobx-angular#readme",
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/core-js": "0.9.43",
"@types/jasmine": "2.5.37",
"angular-cli": "1.0.0-beta.19-3",
"codelyzer": "2.0.0-beta.4",
"core-js": "^2.4.1",
"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": "^3.0.0",
"mobx": ">=2",
"rimraf": "2.5.4",
"rollup": "0.41.4",
"rollup-plugin-node-resolve": "2.0.0",
"rxjs": "^5.0.1",
"ts-helpers": "1.1.1",
"tslint": "4.4.2",
"typescript": "^2.2.1",
"zone.js": "^0.7.4"
},
"peerDependencies": {
"mobx": ">=2",
"@angular/core": ">=2.3.0"
}
}