-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "react-virtualized-listview",
"version": "0.1.8",
"description": "A simple virtualized listview inspired by react-virtualized",
"main": "lib.js",
"scripts": {
"prebuild": "del lib.js",
"build-d": "babel src -d lib",
"build": "babel src -o lib.js",
"lint": "eslint src",
"test": "echo 'No tests found'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nishanbajracharya/react-virtualized-listview.git"
},
"keywords": [
"react",
"virtualized",
"list",
"virualized-list"
],
"author": "Nishan Bajracharya <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nishanbajracharya/react-virtualized-listview/issues"
},
"homepage": "https://github.com/nishanbajracharya/react-virtualized-listview#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"del-cli": "^1.1.0",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.9.1",
"prop-types": "^15.7.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"files": [
"lib.js"
]
}