-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.29 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.29 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
{
"name": "react-simple-experiment",
"version": "3.1.0",
"description": "Simple A/B testing for React",
"keywords": [
"react",
"experiment",
"ab test"
],
"author": "Dan Hayden <dan@tutonics.com>",
"license": "MIT",
"main": "dist/react-simple-experiment.js",
"module": "dist/react-simple-experiment.es.js",
"umd:main": "dist/react-simple-experiment.umd.js",
"files": [
"dist"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"test": "jest --notify",
"lint": "prettier 'src/**/*.{js,json}' --write",
"size": "npx gzip-size-cli ./dist/react-simple-experiment.js",
"checks": "npm run build && npm run test && npm run lint",
"release": "npm run checks && npx standard-version",
"betarelease": "npm run checks && npx standard-version --prerelease beta"
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
},
"peerDependencies": {
"react": ">=16.3"
},
"dependencies": {
"localforage": "1.7.1",
"prop-types": "15.6.1"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-eslint": "8.2.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-preset-env": "1.7.0",
"babel-preset-react": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "1.1.1",
"enzyme-to-json": "3.3.4",
"eslint": "4.19.1",
"eslint-config-prettier": "2.9.0",
"eslint-config-standard": "11.0.0",
"eslint-plugin-import": "2.12.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.8.0",
"eslint-plugin-react": "7.8.2",
"eslint-plugin-standard": "3.1.0",
"jest": "23.0.1",
"jest-cli": "23.0.1",
"lint-staged": "7.1.2",
"prettier": "1.13.2",
"react": "16.4.0",
"react-dom": "16.4.0",
"rollup": "0.59.4",
"rollup-plugin-babel": "3.0.4",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rollup-plugin-terser": "1.0.1",
"rollup-watch": "4.3.1",
"uglify-es": "3.3.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danhayden/react-simple-experiment.git"
},
"bugs": {
"url": "https://github.com/danhayden/react-simple-experiment/issues"
},
"homepage": "https://github.com/danhayden/react-simple-experiment#readme"
}