-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
52 lines (52 loc) · 1.67 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": "mobx-model",
"version": "0.0.39",
"description": "Simple model with attributes and relations updated from json",
"main": "lib/index.js",
"scripts": {
"test": "mocha --reporter spec --compilers js:babel-core/register test/index.js",
"test-watch": "mocha --reporter spec --compilers js:babel-core/register test/index.js --recursive --watch",
"prepublish": "npm run clean && npm run build && npm run test",
"clean": "rm -rf lib/",
"build": "babel src --out-dir lib --source-maps",
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build -g wearevolt/mobx-model",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push git@github.com:wearevolt/mobx-model gh-pages --force"
},
"repository": {
"type": "git",
"url": "https://github.com/ikido/mobx-model.git"
},
"author": "Alexander Ponomarev",
"license": "MIT",
"keywords": [
"mobx",
"observable",
"react-component",
"react",
"reactjs",
"reactive",
"model"
],
"dependencies": {
"bluebird": "^3.4.1",
"inflection": "^1.10.0",
"lodash": "^4.13.1",
"qs": "^6.2.1",
"superagent": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.11.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"gitbook-cli": "^2.1.3",
"mocha": "^2.3.4",
"mobx": "^3.2.2"
},
"peerDependencies": {
"mobx": "^3.2.2"
}
}