This repository has been archived by the owner on May 22, 2020. It is now read-only.
forked from Niryo/controllerim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.64 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "controllerim",
"version": "1.62.0",
"description": "A simple, clean and well structured state management library for react",
"main": "dist/index.js",
"scripts": {
"test": "npm run babel && jest",
"lint": "eslint src --fix ",
"babel": " babel src -d dist",
"build": "npm run lint && jest && npm run babel",
"minorUpdate": "npm run build && npm version minor && npm publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Niryo/controllerim.git"
},
"author": "niryosef89@gmail.com",
"license": "MIT",
"peerDependencies": {
"react": "^16.1.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"lodash": "^4.17.10",
"mobx": "^3.6.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"jest": "^21.2.1",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"jest": {
"setupFiles": [
"./jestSetup.js"
],
"testPathIgnorePatterns": [
"./dist",
"./example"
]
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-react-jsx",
"transform-runtime"
]
},
"keywords": [
"controllerim",
"controller",
"react-view-controller",
"react-controllers",
"observable",
"observer",
"react-component",
"react",
"reactjs",
"reactive",
"mvc",
"state management",
"data flow",
"mobx",
"redux"
]
}