-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "abap-docs",
"version": "1.0.0",
"description": "ABAP documentation",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"execute": "npx ts-node index.ts",
"watch": "npx tsc-watch",
"debug": "npx ts-node index.ts --debug"
},
"author": "Eduardo Copat",
"license": "ISC",
"devDependencies": {
"@types/cheerio": "^0.22.21",
"@types/fs-extra": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-airbnb-typescript": "^9.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"ts-node": "^9.0.0",
"tsc-watch": "^4.2.9",
"typescript": "^4.0.2"
},
"dependencies": {
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"fs-extra": "^9.0.1",
"highlight.js": "^10.1.2",
"highlightjs-sap-abap": "^0.1.0",
"html-entities": "^1.3.1"
}
}