-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
87 lines (87 loc) · 2.67 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-listview-sticky-header",
"version": "0.7.1",
"description": "react listview with sticky header",
"main": "dist/index.js",
"scripts": {
"lint": "standard src/**/*.js | snazzy",
"pretest": "npm run lint",
"prepublishOnly": "parallelshell -w \"npm run build:dist -s\" \"npm run build:example -s\" \"npm run build:bower -s\"",
"prebuild": "rimraf dist example build",
"build:dist": "babel src --out-dir dist --source-maps --ignore src/example",
"build:example": "webpack --config webpack.config.js",
"postbuild": "npm run test -s",
"test": "babel-node test/index.js | tnyan",
"coverage": "babel-node node_modules/isparta/bin/isparta cover test/index.js",
"coveralls": "npm run coverage -s && coveralls < coverage/lcov.info",
"postcoveralls": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cht8687/react-listview-sticky-header.git"
},
"keywords": [
"react",
"react-component",
"component",
"react-listview",
"listview",
"sticky"
],
"files": [
"dist"
],
"author": "Robert Chang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cht8687/react-listview-sticky-header/issues"
},
"homepage": "https://github.com/cht8687/react-listview-sticky-header#readme",
"peerDependencies": {
"react": ">=0.14"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.0.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-object-rest-spread": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^9.0.0",
"babel-loader": "^8.0.2",
"babel-plugin-css-modules-transform": "^1.2.7",
"babel-tape-runner": "^3.0.0",
"classnames": "^2.2.5",
"codecov.io": "^0.1.6",
"coveralls": "^3.0.2",
"css-loader": "^3.2.0",
"enzyme": "^3.7.0",
"enzyme-adapter-react-16": "^1.6.0",
"eslint": "^5.6.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-react": "^7.11.1",
"extract-text-webpack-plugin": "^3.0.2",
"faucet": "0.0.1",
"html-webpack-plugin": "^3.2.0",
"isparta": "^4.0.0",
"mini-css-extract-plugin": "^0.4.2",
"parallelshell": "^3.0.0",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-hot-loader": "^3.1.1",
"react-test-renderer": "^16.6.0",
"rimraf": "^2.4.3",
"sinon": "^1.17.3",
"snazzy": "^8.0.0",
"tap-nyan": "0.0.2",
"tap-xunit": "^2.3.0",
"tape": "^4.5.1",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"prop-types": "^15.7.2"
}
}