-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 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
47
48
49
50
51
52
53
{
"name": "@tuia/moto.js",
"version": "1.0.1",
"description": "A light motion library with curvilinear support.",
"contributors": [
"JetLu <[email protected]>",
"Yelingxiao <[email protected]>"
],
"keywords": [
"animate",
"animation",
"curve",
"motion"
],
"main": "dist/moto.min.js",
"module": "dist/core/index.js",
"types": "moto.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/tuia-fed/moto.js"
},
"scripts": {
"build": "rm -fr dist & npm run compile & rollup -c",
"doc": "rm -fr dist/docs/ & jsdoc -c jsdoc.config.json -R readme.md",
"compile": "babel --config .babelrc src/core -d dist/core",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "JetLu",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-private-methods": "^7.4.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"@babel/runtime": "^7.4.2",
"@babel/runtime-corejs2": "^7.4.2",
"@pixi/jsdoc-template": "^2.4.2",
"core-js": "^2.6.5",
"jsdoc": "^3.5.5",
"popmotion": "^8.6.4",
"rollup": "^1.7.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-babel-minify": "^7.0.0",
"rollup-plugin-commonjs": "^9.2.2",
"rollup-plugin-node-resolve": "^4.0.1"
},
"dependencies": {}
}