-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "mobx-cache",
"version": "0.0.6",
"description": "An observable data cache with MobX",
"author": "Mouad Debbar <mouad.debbar@gmail.com>",
"main": "lib/mobx-cache.js",
"scripts": {
"clean": "rimraf lib coverage",
"es5": "babel -d lib/ src/",
"test": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run clean && npm run es5"
},
"repository": {
"type": "git",
"url": "https://github.com/mdebbar/mobx-cache"
},
"keywords": [],
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-1": "^6.13.0",
"babel-runtime": "^6.11.6",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"eslint-plugin-import": "^1.14.0",
"jest": "^15.1.1",
"rimraf": "^2.5.4"
},
"dependencies": {
"mobx": "^2.2.0"
},
"peerDependencies": {
"mobx": "^2.2.0"
}
}