This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "docs_gm",
"version": "4.2.1",
"description": "The fantastic documentation generator for GameMaker:Studio and GameMaker Studio 2",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "npm run lint && nyc npm run unit-tests",
"unit-tests": "alsatian \"./tests/unit/**/*.spec.ts\"",
"unit-tests-ci": "alsatian \"./tests/unit/**/*.spec.ts\" --hide-progress",
"build": "tsc -b src",
"watch": "tsc -b src --watch",
"clean": "rimraf ./dist/ ./coverage/ ./.nyc_output/",
"report-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "tslint --project . -t verbose",
"prepublishOnly": "npm run clean && npm run build",
"integration": "npm run build && npm link && alsatian \"./tests/integration/**/*.spec.ts\"",
"integration-ci": "npm run build && npm link && alsatian \"./tests/integration/**/*.spec.ts\" --hide-progress"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jhm-ciberman/docs_gm.git"
},
"keywords": [
"gamemaker",
"gms2",
"gms1",
"gms",
"docs",
"documentation",
"generator",
"game",
"maker",
"gms",
"jsdoc"
],
"author": "Javier \"Ciberman\" Mora",
"license": "MIT",
"bugs": {
"url": "https://github.com/jhm-ciberman/docs_gm/issues"
},
"homepage": "https://github.com/jhm-ciberman/docs_gm#readme",
"bin": {
"docs_gm": "dist/docs_gm.js"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/jsonschema": "^1.1.1",
"@types/minimatch": "^3.0.3",
"@types/mock-fs": "^3.6.30",
"@types/mock-require": "^2.0.0",
"@types/node": "^12.7.2",
"@types/nunjucks": "^3.1.2",
"@types/open": "^6.2.0",
"@types/showdown": "^1.9.3",
"@types/xml2js": "^0.4.4",
"@types/yargs": "^13.0.2",
"alsatian": "^3.0.1",
"coveralls": "^3.0.6",
"nyc": "^13.3.0",
"rimraf": "^3.0.0",
"tslint": "^5.19.0",
"typescript": "^3.5.3"
},
"dependencies": {
"comment-parser": "^0.6.2",
"del": "^5.1.0",
"fast-glob": "^3.0.4",
"fs-extra": "^8.1.0",
"get-installed-path": "^4.0.8",
"inversify": "^5.0.1",
"jsonschema": "^1.2.4",
"minimatch": "^3.0.4",
"nunjucks": "^3.2.0",
"open": "6.4.0",
"pkg-dir": "^4.2.0",
"reflect-metadata": "^0.1.13",
"showdown": "^1.9.0",
"xml2js": "^0.4.19",
"yargs": "^14.0.0"
}
}