-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.35 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
{
"name": "react-block-reveal-animation",
"version": "1.0.1",
"description": "A simple React component to reveal content behind a block using CSS3 animations",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "npm-run-all clean build:*",
"build:js": "babel src --out-dir dist",
"build:css": "node-sass-chokidar ./src -o ./dist",
"dev": "concurrently --kill-others \"npm run dev:js\" \"npm run dev:css\"",
"dev:js": "babel src --watch --out-dir dist",
"dev:css": "node-sass-chokidar ./src -o ./dist --watch",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pettersamuelsen/react-block-reveal-animation.git"
},
"keywords": [
"react",
"animation"
],
"author": "Petter Samuelsen",
"license": "MIT",
"bugs": {
"url": "https://github.com/pettersamuelsen/react-block-reveal-animation/issues"
},
"homepage": "https://github.com/pettersamuelsen/react-block-reveal-animation#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"concurrently": "^3.5.1",
"node-sass-chokidar": "^1.2.2",
"npm-run-all": "^4.1.2",
"parcel-bundler": "^1.7.0"
},
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.0",
"react-dom": "^16.3.1"
}
}