-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 886 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
{
"name": "artemis-macro-language",
"version": "1.0.0",
"description": "",
"bin": "lib/index.js",
"main": "lib/index.js",
"scripts": {
"test": "mocha -u bdd --timeout 999999 --colors ./test/",
"docs": "jsdoc -c jsdoc-config.json",
"pkg": "pkg . --output build/aml.exe -t win-x64",
"build": "pkg . --output build\\aml.exe -t win-x64",
"quiet": "cd .\\examples\\quiet-is-the-hunt && ..\\..\\build\\aml ",
"tourn": "cd .\\test\\modular\\cruiser_tournament && ..\\..\\..\\build\\aml "
},
"author": "",
"license": "ISC",
"dependencies": {
"chalk": "^4.0.0",
"command-line-args": "^5.1.1",
"command-line-usage": "^6.1.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"chai": "^4.2.0",
"jsdoc": "^3.6.7",
"mocha": "^10.2.0",
"pkg": "^5.8.1"
},
"pkg": {
"scripts": "lib/**/*.js",
"assets": []
}
}