forked from olahol/react-ab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "react-ab",
"version": "0.5.0",
"description": "Simple declarative and universal A/B testing component for React.",
"main": "react-ab.js",
"peerDependencies": {
"react": ">= 0.13.0"
},
"devDependencies": {
"beefy": "~2.1.1",
"browserify": "~8.1.1",
"coveralls": "^2.11.2",
"get-random-values": "^1.1.1",
"istanbul": "^0.3.5",
"jsdom": "^3.0.2",
"mocha": "^2.1.0",
"react": "^15.6.1"
},
"scripts": {
"dev": "beefy dev.js --live",
"test": "./node_modules/.bin/mocha",
"coverage": "./node_modules/istanbul/lib/cli.js cover --print detail ./node_modules/mocha/bin/_mocha -- --ui bdd -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/olahol/react-ab"
},
"keywords": [
"react",
"ab",
"testing",
"component",
"javascript",
"react-component"
],
"author": "Ola Holmström",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/olahol/react-ab/issues"
},
"homepage": "https://github.com/olahol/react-ab",
"dependencies": {
"create-react-class": "^15.6.0",
"prop-types": "^15.5.10"
}
}