This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.53 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
{
"name": "optux",
"version": "0.2.1",
"description": "React bindings for Optice",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib",
"clean": "rimraf lib dist es coverage",
"coverage": "true",
"lint": "eslint .",
"prepare": "npm run clean && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomixinteractions/optux.git"
},
"files": [
"src",
"lib"
],
"keywords": [
"optice",
"redux",
"store",
"flux",
"state",
"manager",
"react",
"lens",
"update"
],
"contributors": [
"Sergey Sova <[email protected]> (https://sergeysova.com/)",
"Viacheslav Bereza <[email protected]> (http://betula.co/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/atomixinteractions/optux/issues"
},
"homepage": "https://github.com/atomixinteractions/optux#readme",
"devDependencies": {
"@atomix/eslint-config-react": "^6.4.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"jest": "^23.1.0",
"optice": "^0.2.0",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"react-test-renderer": "^16.4.0",
"rimraf": "^2.6.2"
},
"dependencies": {
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "^16.3.0",
"optice": "^0.2.0"
}
}