-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 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
{
"name": "glimmer-docgen-typescript",
"version": "0.4.0",
"private": false,
"description": "Extract information from Glimmer components to generate documentation using typescript parser/checker",
"repository": "https://github.com/josemarluedke/glimmer-docgen-typescript",
"license": "MIT",
"author": "Josemar Luedke <[email protected]>",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"compile": "tsc",
"prepare": "tsc",
"test": "jest",
"lint:js": "eslint . --ext .js,.ts",
"lint:js:fix": "eslint . --ext .js,.ts --fix"
},
"dependencies": {
"debug": "^4.3.4",
"fast-glob": "^3.3.2",
"typescript": "^5.3.3"
},
"devDependencies": {
"@glimmer/component": "^1.1.2",
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@underline/eslint-config-ember-typescript": "^0.16.0",
"@underline/eslint-config-node": "^0.16.0",
"@underline/eslint-config-typescript": "^0.16.0",
"eslint": "^8.56.0",
"eslint-plugin-jest": "^27.8.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">= 16.*"
},
"publishConfig": {
"access": "public"
}
}