forked from yusinto/ld-redux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 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
{
"name": "ld-redux",
"version": "3.1.3",
"description": "A library to integrate launch darkly with react redux",
"main": "lib/index.js",
"scripts": {
"test": "jest",
"build": "rimraf lib/* && babel src -d lib --ignore *.test.js",
"lint": "eslint --cache --format 'node_modules/eslint-friendly-formatter' ./src",
"prep-publish": "npm run build && npm version patch -m 'Upgrade to %s' && npm publish && git push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yusinto/ld-redux.git"
},
"keywords": [
"launch",
"darkly",
"react",
"redux",
"feature",
"flags",
"toggles"
],
"author": "Yusinto Ngadiman <[email protected]> (http://www.reactjunkie.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/yusinto/ld-redux/issues"
},
"homepage": "https://github.com/yusinto/ld-redux#readme",
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-jest": "^22.1.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-friendly-formatter": "^2.0.6",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.3.0",
"jest": "^22.1.2",
"rimraf": "^2.5.4",
"testdouble": "^1.7.0"
},
"dependencies": {
"ip": "^1.1.3",
"ldclient-js": "^2.1.0",
"lodash": "^4.16.3",
"ua-parser-js": "^0.7.10",
"uuid": "^3.0.1"
},
"peerDependencies": {
"react": "^16.2.0"
}
}