forked from animatedjs/animated
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.28 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
{
"name": "animated-js",
"version": "0.0.4",
"description": "Declarative Animations Library for Rax",
"main": "lib/index.js",
"scripts": {
"prepublish": "npm run build:lib",
"build": "npm run build:lib && npm run build:interactive-docs",
"build:lib": "babel src --out-dir lib",
"build:watch": "npm run build:lib -- --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boiawang/animated-js.git"
},
"keywords": [
"Animated",
"React",
"Rax",
"Weex"
],
"author": "",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/boiawang/animated-js/issues"
},
"homepage": "https://github.com/boiawang/animated-js#readme",
"dependencies": {
"invariant": "^2.2.0",
"normalize-css-color": "^1.0.1"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-syntax-trailing-function-commas": "^6.5.0",
"babel-plugin-transform-flow-strip-types": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-react-native": "^1.4.0",
"browserify": "^13.0.0",
"react": "^15.4.0",
"react-dom": "^15.4.0"
}
}