-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
56 lines (56 loc) · 1.72 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
{
"name": "react-virtualized-checkbox",
"version": "3.0.1",
"description": "Checkbox group component with virtualization for large number of items",
"author": "Emile Bres <emile.bres@gmail.com> (http://github.com/emilebres)",
"license": "MIT",
"bugs": {
"url": "https://github.com/emilebres/react-virtualized-checkbox/issues"
},
"homepage": "https://emilebres.github.io/react-virtualized-checkbox",
"main": "lib/index.js",
"dependencies": {
"gh-pages": "^1.0.0",
"prop-types": "^15.5.10",
"react-virtualized": "^9.9.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build",
"prepare": "rimraf lib && npm run compile",
"compile": "npm run lint && npm run compile:js",
"lint": "eslint src/**/*.js",
"compile:js": "rimraf lib && cross-env NODE_ENV=production babel src/VirtualizedCheckbox -d lib --presets es2015,react-app --ignore test.js"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react-app": "^3.0.2",
"cross-env": "^5.0.5",
"enzyme": "^2.9.1",
"eslint": "^4.5.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-prettier": "^2.2.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-overlays": "^0.8.0",
"react-resizable": "^1.7.1",
"react-scripts": "1.0.11",
"react-test-renderer": "^15.6.1",
"rimraf": "^2.6.1"
},
"babel": {
"presets": ["react-app"]
},
"eslintConfig": {
"extends": ["react-app", "prettier"],
"env": {
"browser": true,
"jest": true
}
}
}