-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.95 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
{
"name": "ahk_parser.js",
"version": "1.0.0",
"main": "index.js",
"files": [
"index.js"
],
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"cross-env": "^7.0.3",
"dts-bundle": "^0.7.3",
"eslint": "^7.29.0",
"mocha": "^9.0.1",
"ts-loader": "^9.2.3",
"ts-mocha": "^8.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.3.4",
"webpack": "^5.40.0",
"webpack-cli": "^4.7.2"
},
"scripts": {
"extractedTests": "ts-mocha mocha/AHK-v2-script-converter.ts",
"mocha": "ts-mocha mocha/test.ts",
"test": "yarn mocha",
"fixTest": "cross-env doFixTest=1 ts-mocha mocha/test.ts",
"extractTests": "ts-node-dev --respawn --transpile-only \"./mmikeww - AHK-v2-script-converter/extract tests.ts\"",
"convertTov2": "ts-node-dev --respawn --transpile-only ./src/convertTov2.ts",
"reconstruct": "ts-node-dev --respawn --transpile-only ./src/reconstruct.ts",
"objToMap": "ts-node-dev --respawn --transpile-only ./src/object_to_map.ts",
"dev": "ts-node-dev --respawn --transpile-only ./src/usage.ts",
"dev2": "ts-node-dev ./src/usage.ts",
"githubPages": "yarn ahkParserGithubPages && yarn modifyEverythingToV2GithubPages",
"ahkParserGithubPages": "webpack --mode production --config build/ahkParserGithubPages.js",
"modifyEverythingToV2GithubPages": "webpack --mode production --config build/modifyEverythingToV2GithubPages.js",
"package": "yarn webpackProd && yarn dtsBundle && yarn unlink_d.ts",
"webpackProd": "webpack --mode production --config build/webpack.config.js",
"bundleDeclarations": "yarn declarations && yarn dtsBundle && yarn unlink_d.ts",
"declarations": "tsc --emitDeclarationOnly",
"dtsBundle": "node build/dtsBundle.js",
"unlink_d.ts": "node build/unlink_d.ts.js"
},
"packageManager": "yarn@3.0.2"
}