-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "react-experiments",
"version": "5.1.0",
"dependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"create-react-class": "^15.6.3",
"prop-types": "^15.6.1",
"react": "^16.2.0"
},
"devDependencies": {
"babel-core": "^6.0.1",
"babel-loader": "^6.0.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-jest": "^13.0.0",
"jest": "^22.4.2",
"planout": "^5.0.0",
"react-dom": "^16.2.0",
"webpack": "^1.5.3"
},
"description": "react-experiments is a Javascript library that assists in defining and managing UI experiments in React.",
"main": "dist/react-experiments.js",
"repository": {
"type": "git",
"url": "https://github.com/HubSpot/react-experiments"
},
"keywords": [
"ab",
"a/b",
"split testing",
"ui experiments",
"experiments react",
"react-component",
"component"
],
"authors": [
"Gustavo Vargas",
"Guy Aridor",
"Matthew Rheault"
],
"jest": {
"moduleFileExtensions": [
"js",
"json",
"es6"
],
"unmockedModulePathPatterns": [
"dist/",
"src/",
"__tests__/utils",
"node_modules/"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/"
],
"testURL": "http://localhost"
},
"scripts": {
"test": "sh build.sh && jest",
"build": "sh build.sh"
},
"license": "MIT"
}