This repository has been archived by the owner on Sep 12, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.85 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
{
"name": "react-context-api-store",
"version": "1.0.15",
"description": "Seemless, lightweight, state management library that supports async actions and persistent states out of the box. Inspired by Redux and Vuex. Built on top of React's context api.",
"main": "lib/index.js",
"scripts": {
"test": "clear && npm run build && jest --coverage --updateSnapshot",
"build": "rm -rf lib && babel src --out-dir lib && cp lib/index.js example/src/lib.js",
"lint": "eslint src/**/*.js __tests__/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aprilmintacpineda/react-context-api-store.git"
},
"keywords": [
"stateful",
"state-management",
"react-context-api",
"store",
"global-states",
"react"
],
"files": [
"lib/*",
"README.md",
"package.json",
"package-lock.json",
"LICENSE"
],
"author": "April Mintac Pineda",
"license": "MIT",
"bugs": {
"url": "https://github.com/aprilmintacpineda/react-context-api-store/issues"
},
"homepage": "https://github.com/aprilmintacpineda/react-context-api-store#readme",
"dependencies": {
"prop-types": "^15.6.2",
"react": "^16.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.5",
"babel-jest": "^23.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-minify": "^0.4.3",
"babel-preset-react": "^6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.10.0",
"jest": "^23.2.0",
"jest-localstorage-mock": "^2.2.0",
"react-dom": "^16.4.1",
"react-native": "^0.55.4",
"react-test-renderer": "^16.4.1"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
}
}