-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
86 lines (86 loc) · 2.72 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-ab-test",
"keywords": [
"react",
"react-component",
"testing",
"test",
"A/B",
"ab",
"A/B testing",
"A/B test"
],
"main": "index.js",
"version": "2.0.1",
"description": "A/B testing React components and debug tools. Isomorphic with a simple, universal interface. Well documented and lightweight. Tested in popular browsers and Node.js. Includes helpers for Mixpanel and Segment.com.",
"directories": {
"test": "test"
},
"peerDependencies": {
"react": ">=0.14.0"
},
"dependencies": {
"fbemitter": "^2.0.2",
"fbjs": "~0",
"prop-types": "^15.5.8"
},
"devDependencies": {
"assert": "^1.3.0",
"babel": "^6.5.2",
"babel-cli": "^6.16.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^6.2.4",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"chai": "^4.0.2",
"co": "^4.6.0",
"doctoc": "^1.2.0",
"envify": "^3.4.0",
"es6-promise": "^3.1.2",
"eslint": "^3.19.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^6.10.3",
"expose-loader": "^0.7.1",
"fbemitter": "^2.0.2",
"fbjs": "^0.8.0",
"isparta-loader": "^2.0.0",
"karma": "^0.13.22",
"karma-browserstack-launcher": "^0.1.10",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-coveralls": "^1.1.2",
"karma-firefox-launcher": "^0.1.7",
"karma-mocha": "^0.2.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.7.0",
"mocha": "^2.4.5",
"node-uuid": "^1.4.7",
"react": "^15.0.1",
"react-dom": "^15.5.4",
"regenerator": "^0.8.42",
"regenerator-loader": "^2.0.0",
"transform-loader": "^0.2.3",
"webpack": "^1.12.14"
},
"scripts": {
"test": "./node_modules/karma/bin/karma start test/browser/karma.conf.js; mocha --require babel-core/register --require babel-polyfill test/isomorphic/*.jsx",
"build": "./node_modules/.bin/doctoc . --github --title '<h1>Table of Contents</h1>'; ./node_modules/babel-cli/bin/babel.js --presets es2015,stage-1,react --plugins add-module-exports ./src --out-dir ./lib; ./node_modules/webpack/bin/webpack.js --config webpack.standalone.config.js",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushtell/react-ab-test.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pushtell/react-ab-test/issues"
},
"homepage": "https://github.com/pushtell/react-ab-test#readme"
}