forked from openfl/actuate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "actuate",
"version": "1.8.7-alpha.3",
"description": "Actuate is a flexible, fast \"tween\" library",
"keywords": [
"tween",
"animation",
"openfl"
],
"homepage": "https://github.com/jgranick/actuate",
"bugs": {
"url": "https://github.com/jgranick/actuate/issues"
},
"license": "MIT",
"contributors": [
"Joshua Granick"
],
"main": "dist/actuate.min.js",
"module": "lib/motion/index.js",
"files": [
"dist",
"lib",
"scripts",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/jgranick/actuate.git"
},
"scripts": {
"build": "npm run build-lib && npm run build-dist",
"build-dist": "webpack --config webpack.dev.js && webpack --config webpack.prod.js",
"build-lib": "cd scripts && haxe build.hxml",
"prepublishOnly": "npm run build"
},
"config": {
"haxe": "3.4.4"
},
"devDependencies": {
"haxe": "^4.1.0",
"hxgenjs": "kevinresol/hxgenjs",
"openfl": "^6.5.3-alpha.6",
"uglifyjs-webpack-plugin": "^1.1.4",
"webpack": "^3.10.0",
"webpack-merge": "^4.1.1"
},
"dependencies": {}
}