forked from pushtell/react-ab-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.69 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.69 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"engines": {
"npm": ">=6.3.0"
},
"name": "redux-ab-test",
"keywords": [
"react",
"react-component",
"redux",
"redux-component",
"testing",
"test",
"A/B",
"ab",
"A/B testing",
"A/B test"
],
"main": "dist/index.js",
"description": "A/B testing React components with Redux and debug tools. Isomorphic with a simple, universal interface. Well documented and lightweight. Tested in popular browsers and Node.js. Includes helpers for React, Redux, and Segment.io",
"directories": {
"test": "test"
},
"peerDependencies": {
"react": "15.4.2",
"react-redux": "5.0.2",
"redux": "3.6.0",
"redux-actions": "1.2.1"
},
"dependencies": {
"jsdom": "^9.8.3",
"react-dom": "^15.4.2"
},
"devDependencies": {
"assert": "^1.3.0",
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-core": "^6.5.2",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-class-properties": "^6.10.2",
"babel-plugin-transform-react-display-name": "^6.3.13",
"babel-plugin-transform-react-jsx-source": "^6.5.0",
"babel-plugin-transform-runtime": "^6.3.13",
"babel-plugin-typecheck": "^3.9.0",
"babel-polyfill": "^6.3.14",
"babel-preset-airbnb": "^2.0.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2016": "^6.11.3",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"babel-register": "^6.3.13",
"babel-runtime": "^6.3.19",
"chai": "^3.5.0",
"chai-enzyme": "0.6.0",
"chai-immutable": "1.6.0",
"chai-spies": "0.7.1",
"enzyme": "2.6.0",
"flow": "0.2.3",
"flow-bin": "0.35.0",
"immutable": "3.8.1",
"mocha": "3.1.2",
"mocha-jsdom": "1.1.0",
"react": "15.4.2",
"react-addons-test-utils": "15.4.2",
"react-redux": "5.0.2",
"redux": "3.6.0",
"redux-actions": "1.2.1",
"redux-mock-store": "1.2.2",
"sinon": "2.0.0-pre.4"
},
"scripts": {
"test:all": "npm run test && npm run lint && npm run flow",
"test": "NODE_PATH=src:./test ./node_modules/.bin/mocha",
"test:watch": "npm run test -- --watch",
"clean": "rm -rf ./dist",
"build": "babel --out-dir=./dist src",
"shipit": "npm run build && npm publish && npm run clean"
},
"version": "6.1.0-beta",
"release": {
"verifyConditions": {
"path": "./test/release"
}
},
"repository": {
"type": "git",
"url": "https://github.com/gnagel/redux-ab-test.git"
},
"author": "Glenn Nagel",
"license": "MIT",
"bugs": {
"url": "https://github.com/gnagel/redux-ab-test/issues"
},
"homepage": "https://github.com/gnagel/redux-ab-test#readme"
}