-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"name": "@staty/staty",
"version": "0.1.6",
"main": "lib/index.js",
"license": "MIT",
"scripts": {
"start": "tsc && node ./lib/index.js ./example/index.staty",
"build": "tsc",
"lint": "eslint ./src/ --ext .ts",
"test": "jest"
},
"dependencies": {
"clean-stack": "^2.2.0",
"highlight.js": "^9.15.10",
"js-beautify": "1.10.2",
"js-yaml": "^3.13.1",
"marked": "^0.7.0",
"parse5": "^5.1.0",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/highlight.js": "^9.12.3",
"@types/jest": "24.0.18",
"@types/js-beautify": "1.8.1",
"@types/js-yaml": "^3.12.1",
"@types/marked": "^0.6.5",
"@types/node": "12.7.8",
"@types/parse5": "^5.0.2",
"@types/uuid": "^3.4.5",
"@typescript-eslint/eslint-plugin": "2.3.0",
"@typescript-eslint/parser": "2.3.0",
"eslint": "6.4.0",
"eslint-import-resolver-typescript": "1.1.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "22.17.0",
"eslint-plugin-unicorn": "11.0.2",
"jest": "24.9.0",
"node-sass": "4.12.0",
"ts-jest": "24.1.0",
"typescript": "3.6.3"
}
}