forked from Stanko/react-plx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·55 lines (55 loc) · 1.93 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
{
"name": "react-plx",
"version": "1.3.17",
"private": false,
"license": "MIT",
"main": "lib/index.js",
"description": "React parallax (on scroll effects) component. Lightweight, yet powerful.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "parcel docs/index.html",
"build": "rm -rf ./lib && NODE_ENV=\"production\" babel ./source --out-dir ./lib",
"build-docs": "rm -rf ./dist-docs && EXAMPLE=\"true\" parcel build docs/index.html --out-dir ./dist-docs --public-url /react-plx",
"prepare": "npm run build",
"publish-docs": "sh publish-docs.sh",
"publish-all": "npm publish && npm run publish-docs",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags",
"lint-break-on-errors": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx",
"lint": "eslint ./source/js ./webpack.config.js -f table --ext .js --ext .jsx || true"
},
"devDependencies": {
"animated-scroll-to": "^2.0.10",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"cssnano": "^4.1.10",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"dependencies": {
"bezier-easing": "^2.1.0",
"prop-types": "^15.7.2",
"window-scroll-manager": "^1.1.4"
},
"peerDependencies": {
"react": ">=15.6.2",
"react-dom": ">=15.6.2"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Stanko/react-plx.git"
},
"keywords": [
"react",
"parallax"
],
"author": "Stanko",
"bugs": {
"url": "https://github.com/Stanko/react-plx/issues"
},
"homepage": "https://github.com/Stanko/react-plx#readme"
}