-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 966 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
31
32
33
34
35
{
"name": "lottie-to-avd",
"version": "0.0.1",
"description": "Lottie to AVD converter",
"main": "./src/index.js",
"bin": {
"lottie-to-avd": "./lottie-to-avd.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "browserify src/index.js -o lib/build.js -t [ babelify --presets [ babel-preset-es2015 ] ]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garawaa/lottie-to-avd.git"
},
"author": "Garawaa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/garawaa/lottie-to-avd/issues"
},
"homepage": "https://github.com/garawaa/lottie-to-avd#readme",
"dependencies": {
"transformation-matrix": "^2.16.1",
"transformatrix": "^1.1.1",
"xml": "^1.0.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^17.0.0"
}
}