-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
87 lines (87 loc) · 2.54 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "react-tiny-virtual-list",
"version": "2.2.0",
"description": "A tiny but mighty list virtualization component, with zero dependencies 💪",
"main": "build/react-tiny-virtual-list.cjs.js",
"module": "build/react-tiny-virtual-list.es.js",
"jsnext:main": "build/react-tiny-virtual-list.es.js",
"types": "types/index.d.ts",
"files": [
"build",
"types"
],
"scripts": {
"build": "babel-node --presets es2015 ./config/build.js",
"lint": "eslint ./src --ext .ts,.tsx --max-warnings 0 --format codeframe",
"start": "nwb serve-react-app demo/src/index.tsx --config ./config/nwb/config.js",
"test": "jest --config ./config/jest/config.json --no-cache",
"test:coverage": "npm run test -- --coverage",
"test:watch": "npm run test -- --watch",
"test:ci": "npm run lint && npm run test && codecov"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "15.x || 16.x"
},
"devDependencies": {
"@types/jest": "^20.0.8",
"@types/prop-types": "^15.5.1",
"@types/react": "^15.0.38",
"@types/react-dom": "^15.5.4",
"awesome-typescript-loader": "^3.2.1",
"babel-cli": "^6.26.0",
"babel-eslint": "7.0.0",
"babel-jest": "^19.0.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-typescript": "^7.0.0-alpha.19",
"codecov": "^1.0.1",
"eslint": "^4.10.0",
"eslint-plugin-shopify": "^22.1.0",
"fs-extra": "^4.0.1",
"jest": "^19.0.2",
"nwb": "0.15.x",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.1",
"rollup": "^0.49.2",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.15.0",
"rollup-plugin-uglify": "^2.0.1",
"tslint": "^5.10.0",
"tslint-config-shopify": "^3.0.2",
"typescript": "2.8.3"
},
"author": {
"name": "Clauderic Demers",
"email": "[email protected]"
},
"user": "clauderic",
"homepage": "https://github.com/clauderic/react-tiny-virtual-list",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/clauderic/react-tiny-virtual-list.git"
},
"bugs": {
"url": "https://github.com/clauderic/react-tiny-virtual-list/issues"
},
"keywords": [
"react",
"reactjs",
"react-component",
"virtual",
"list",
"scrolling",
"infinite",
"virtualized",
"virtualization",
"windowing"
]
}