-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
62 lines (62 loc) · 1.96 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
{
"name": "ts-gyb",
"version": "0.12.2",
"description": "Generate Native API based on TS interface",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/ts-gyb"
},
"license": "MIT",
"homepage": "https://github.com/microsoft/ts-gyb#readme",
"keywords": [],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"debug": "ts-node ./src/cli/index",
"start:example:basic": "npm run debug -- --config demo/basic/config.json",
"start:example:mini-editor": "npm run debug -- --config demo/mini-editor/web/config.json",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint ./src --ext .js,.ts",
"prettier:write": "prettier --write \"src/**/*.ts\"",
"prettier:check": "prettier --check \"src/**/*.ts\"",
"lint:fix": "npm run lint -- --fix && npm run prettier:write",
"lint:ci": "npm run lint && npm run prettier:check",
"doc:gen:config": "typedoc --out documentation/generated src/cli/configuration.ts --disableSources && rm documentation/generated/modules.md && rm documentation/generated/README.md"
},
"main": "dist/index.js",
"bin": {
"ts-gyb": "bin/ts-gyb"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts"
],
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^9.0.0",
"@types/mustache": "^4.1.1",
"@types/uuid": "^8.3.0",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.3.4",
"del": "^5.1.0",
"eslint": "^7.5.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^9.1.3",
"prettier": "^2.2.1",
"ts-node": "^8.10.2",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.10.4",
"uuid": "^8.3.2"
},
"dependencies": {
"chalk": "^4.1.1",
"glob": "^7.1.6",
"mustache": "^4.2.0",
"typescript": "^4.3.2",
"yargs": "^16.1.0"
}
}