-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 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
{
"name": "react-multiple-sticky",
"version": "1.0.3",
"description": "React component to implement multiple sticky elements when parent container is scrolling",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "npm run clean && tsc && babel es6 -d dist && npm run copy-declarations",
"clean": "n-clean dist && n-clean es6",
"copy-declarations": "n-copy --source es6 --destination dist *.d.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Dashlane/react-multiple-sticky.git"
},
"bugs": {
"url": "https://github.com/Dashlane/react-multiple-sticky/issues"
},
"homepage": "https://github.com/Dashlane/react-multiple-sticky#readme",
"keywords": [
"react",
"sticky",
"sticky headers",
"multiple sticky headers"
],
"author": "Dashlane",
"license": "Apache-2.0",
"devDependencies": {
"@types/react": "^16.0.40",
"@types/react-dom": "^16.0.4",
"@types/react-virtualized": "^9.7.14",
"babel-cli": "^6.14.0",
"babel-plugin-transform-object-assign": "^6.8.0",
"babel-preset-es2015": "^6.14.0",
"npm-build-tools": "^2.2.5",
"typescript": "^2.7.2"
},
"peerDependencies": {
"react": "^15.3.1",
"react-dom": "^15.3.1"
},
"dependencies": {
"react-virtualized": "^9.18.5"
}
}