-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.8 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.8 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
97
98
{
"name": "react-experimentify",
"version": "1.1.0",
"description": "A set of components to build experiments in React for A/B and Multivariate testing.",
"main": "dist/index.js",
"scripts": {
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"prepublish": "npm run build",
"build": "babel --out-dir dist src",
"start": "yarn build && node demo/server.js",
"watch": "yarn build && nodemon -w demo -x node demo/server.js",
"test": "yarn build && yarn lint && yarn test:unit",
"test:unit": "nyc mocha",
"tdd": "mocha --watch test",
"lint": "eslint src"
},
"keywords": [
"react",
"experiment",
"context",
"multivariant-testing",
"multivariant",
"optimizely",
"ab-testing"
],
"author": "Tom Daniels",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/DomainGroupOSS/react-experimentify.git"
},
"bugs": {
"url": "https://github.com/DomainGroupOSS/react-experimentify/issues"
},
"homepage": "https://github.com/DomainGroupOSS/react-experimentify#readme",
"babel": {
"presets": [
"env",
"react"
],
"plugins": [
"transform-object-rest-spread",
"transform-class-properties"
]
},
"peerDependencies": {
"react": "^15.1.0 || ^16.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"babelify": "^8.0.0",
"browserify": "^16.2.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-datetime": "^1.4.1",
"chai-enzyme": "^1.0.0-beta.0",
"changelog-verify": "^1.1.0",
"dirty-chai": "^1.2.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"express": "^4.16.3",
"htmlescape": "^1.1.1",
"jsdom": "^11.0.0",
"literalify": "^0.4.0",
"mocha": "^3.2.0",
"nodemon": "^1.18.3",
"nyc": "^11.0.3",
"proxyquire": "^2.1.3",
"react": "^16.3.2",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^16.3.2",
"react-lorem-component": "^0.13.0",
"sinon": "^10.0.0",
"sinon-chai": "^3.6.0",
"start-server-and-test": "^1.7.0",
"version-changelog": "^3.1.0"
},
"dependencies": {
"create-react-context": "^0.2.2",
"hoist-non-react-statics": "^3.0.1",
"invariant": "^2.2.4",
"lodash": "^4.17.10",
"mixpanel-browser": "^2.41.0",
"prop-types": "^15.5.10",
"warning": "^4.0.2"
}
}