forked from BowlerHatLLC/asconfigc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
47
48
49
50
51
52
{
"name": "asconfigc",
"version": "1.5.0",
"description": "Builds an ActionScript & MXML project configured with asconfig.json, from simple compilation to packaging Adobe AIR apps.",
"author": "Josh Tynjala",
"repository": "BowlerHatLLC/asconfigc",
"bugs": "https://github.com/BowlerHatLLC/asconfigc/issues",
"license": "Apache-2.0",
"keywords": [
"ActionScript",
"asconfig.json",
"Apache Royale",
"Royale",
"AS3",
"MXML",
"AIR",
"Flash",
"Apache FlexJS",
"FlexJS",
"Flash Player"
],
"bin": "./asconfigc",
"main": "./bin/js-release/index.js",
"files": [
"bin/js-release",
"schemas",
"jsfl",
"NOTICE",
"asconfigc"
],
"engines": {
"node": ">=10.12.0"
},
"dependencies": {
"adm-zip": "^0.4.13",
"chokidar": "^3.3.1",
"del": "^3.0.0",
"jsen": "^0.6.6",
"json5": "^1.0.1",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"tmp": "^0.1.0"
},
"devDependencies": {
"@apache-royale/royale-js": "0.9.6"
},
"scripts": {
"build": "asnodec --targets=JSNodeModule --source-map=true --source-path+=typedefs src/ASConfigC.as",
"test": "npm run build && node ./asconfigc -p asconfig.test.json && cd ./test/fixtures && node ../bin/js-debug/index.js",
"prepack": "npm test"
}
}