-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "react-bucket-test",
"version": "3.0.1",
"description": "Simplifying experiments with React.",
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"build": "nwb build-react-component",
"clean": "nwb clean-module && nwb clean-demo",
"start": "NODE_ENV=development nwb serve-react-demo",
"test": "ava",
"prepare": "npm run build",
"deploy": "gh-pages -d demo/dist"
},
"dependencies": {
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "16.8.x",
"react-dom": "16.8.x"
},
"devDependencies": {
"ava": "^1.4.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"esm": "^3.2.22",
"gh-pages": "^2.0.1",
"nwb": "0.23.x",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"author": "Cezar Sampaio",
"homepage": "https://cezarsmpio.github.io/react-bucket-test/",
"license": "MIT",
"repository": "https://github.com/cezarsmpio/react-bucket-test",
"keywords": [
"react-component",
"ab test",
"bucket test",
"test",
"react",
"split test"
],
"ava": {
"files": [
"tests/**/*.test.js"
],
"require": [
"esm"
]
}
}