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
|
{
"name": "kronikarz",
"version": "1.0.0",
"description": "System elektronicznej kroniki",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"dev": "tsc --watch",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"keywords": [
"kronika"
],
"author": "Patryk Niedźwiedziński",
"license": "ISC",
"dependencies": {
"@types/jsdom": "^12.2.4",
"front-matter": "^3.0.2",
"jsdom": "^15.1.1",
"markdown-it": "^10.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.12",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"typescript": "^3.6.4",
"vuepress": "^1.2.0"
}
}
|