-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1006 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 1006 Bytes
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
{
"name": "element-utils",
"version": "0.1.2",
"description": "Utility functions for React elements",
"main": "./dist/index.js",
"repository": "https://github.com/nitin42/animate-components/",
"author": "Nitin Tulswani",
"license": "MIT",
"scripts": {
"flow": "./node_modules/.bin/flow",
"prebuild": "rm -rf ./dist",
"build": "NODE_ENV=production ./node_modules/.bin/babel src -d dist",
"test": "NODE_ENV=development ./node_modules/.bin/jest",
"test:watch": "NODE_ENV=development ./node_modules/.bin/jest --watch",
"prepublishOnly": "yarn flow && yarn test && yarn build"
},
"files": [
"dist"
],
"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",
"babel-preset-react": "^6.24.1",
"flow-bin": "^0.48.0",
"jest": "^20.0.4"
},
"dependencies": {
"react": "^16.0.0"
}
}