forked from nitin42/animate-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 819 Bytes
/
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
{
"name": "animate-keyframes",
"version": "0.1.6",
"description": "Keyframes for animate-components",
"main": "./dist/keyframes.js",
"repository": "https://github.com/nitin42/animate-components",
"author": "Nitin Tulswani",
"license": "MIT",
"scripts": {
"prebuild": "rm -rf ./dist",
"flow": "./node_modules/.bin/flow",
"build": "./node_modules/.bin/babel src -d dist",
"prepublishOnly": "yarn flow && yarn build"
},
"files": [
"dist"
],
"dependencies": {
"styled-components": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-preset-babili": "^0.1.4",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"flow-bin": "^0.48.0",
"flow-typed": "^2.1.2"
}
}