-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "mobx-collection",
"version": "0.3.0",
"main": "dist/mobx-collection.js",
"description": "Objects store for MobX",
"keywords": [
"mobx",
"collection",
"objects",
"store",
"records",
"documents"
],
"repository": "https://github.com/lukaszgrolik/mobx-collection",
"homepage": "https://github.com/lukaszgrolik/mobx-collection",
"bugs": "https://github.com/lukaszgrolik/mobx-collection/issues",
"author": {
"name": "Łukasz Grolik",
"email": "lukasz@grolik.pl",
"url": "https://github.com/lukaszgrolik"
},
"scripts": {
"dev": "WEBPACK_ENV=dev webpack --progress --colors",
"dev:watch": "WEBPACK_ENV=dev webpack --progress --colors --watch",
"build": "WEBPACK_ENV=build webpack",
"test": "mocha",
"test:build": "NODE_ENV=production npm run test",
"preversion": "npm run dev && npm run build && npm run test && npm run test:build"
},
"dependencies": {
"merge-items": "^0.2.0"
},
"peerDependencies": {
"mobx": "2.x || 3.x"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"mobx": "^2.3.4",
"mocha": "^3.2.0",
"should": "^11.2.0",
"webpack": "^1.14.0"
},
"license": "MIT"
}