-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.97 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
{
"name": "whitelodge",
"version": "5.1.1",
"description": "whitelodge is a small library which makes managing state in React applications easy. It takes cues from other libraries such as Redux and MobX but endeavours to be simpler to understand and to use.",
"main": "./dist/index.js",
"config": {
"echoGreen": "\\033[30;48;5;82m",
"echoColourReset": "\\033[0m"
},
"scripts": {
"test": "bash ./__tests__/run-tests.sh",
"lint": "standard --verbose | snazzy && echo \"$npm_package_config_echoGreen ✔ All good! $npm_package_config_echoColourReset\"",
"lintFix": "standard --fix && echo -e \"$npm_package_config_echoGreen ✔ Done! $npm_package_config_echoColourReset\"",
"build": "babel src --out-dir dist",
"maybePublish": "bash ./maybe-publish.sh"
},
"repository": {
"type": "git",
"url": "/~https://github.com/liegeandlief/whitelodge.git"
},
"bugs": {
"url": "/~https://github.com/liegeandlief/whitelodge/issues"
},
"keywords": [
"whitelodge",
"state",
"state management",
"subscribe",
"predictable",
"state container",
"model",
"reactjs",
"react",
"react-component",
"reactive",
"redux",
"mobx"
],
"author": {
"name": "Michael Henson",
"url": "/~https://github.com/liegeandlief"
},
"license": "MIT",
"dependencies": {
"is-function": "^1.0.1",
"is-string": "^1.0.4",
"isobject": "^3.0.1",
"seamless-immutable": "^7.1.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^20.0.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jest": "^20.0.4",
"snazzy": "^7.0.0",
"standard": "^10.0.3"
},
"peerDependencies": {
"react": ">=16.0.0"
},
"jest": {
"testRegex": "(/__tests__/tests/.*|(\\.|/)(test|spec))\\.jsx?$",
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"globals": {
"window": true
}
}
}