This repository has been archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 1.8 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
76
77
78
79
80
81
82
{
"name": "controllerim",
"version": "3.0.5",
"description": "A simple, clean and well structured state management library for react",
"main": "src/index.js",
"typings": "./src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint src --fix ",
"deploy": "gh-pages -d demo-app/build",
"minorUpdate": "npm run build && npm version minor && npm publish"
},
"files": [
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/Niryo/controllerim.git"
},
"author": "[email protected]",
"license": "MIT",
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"lodash": "^4.17.10",
"mobx": "^5.15.4",
"mobx-utils": "^5.5.7",
"mobx-react": "^6.2.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"babel-cli": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.8.2",
"gh-pages": "^2.2.0",
"jest": "^24.9.0",
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"jest": {
"setupFiles": [
"./jestSetup.js"
],
"testPathIgnorePatterns": [
"./example",
"demo-app"
]
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"transform-react-jsx",
"@babel/plugin-transform-runtime"
]
},
"keywords": [
"controllerim",
"controller",
"react-view-controller",
"react-controllers",
"observable",
"observer",
"react-component",
"react",
"reactjs",
"reactive",
"mvc",
"state management",
"data flow",
"mobx",
"redux"
]
}