forked from BowlerHatLLC/asconfigc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.24 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
{
"name": "asconfigc",
"version": "1.8.1",
"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",
"Flash Player"
],
"bin": "./asconfigc",
"main": "./bin/js-release/index.js",
"files": [
"bin/js-release",
"schemas",
"jsfl",
"NOTICE",
"asconfigc"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"adm-zip": "^0.5.14",
"ajv": "^8.16.0",
"chokidar": "^3.6.0",
"del": "^6.1.1",
"json5": "^1.0.2",
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"tmp": "^0.2.3"
},
"devDependencies": {
"@apache-royale/royale-js": "^0.9.11"
},
"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"
}
}