-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.69 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
{
"name": "mdld",
"version": "0.0.91",
"description": "",
"main": "index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"dependencies": {
"@types/lodash": "^4.14.167",
"base64url": "^3.0.1",
"lodash": "^4.17.20",
"markdown-it": "^11.0.1",
"markdown-it-regexp": "^0.4.0",
"mermaid": "^8.8.4",
"vis-data": "^7.1.1",
"vis-network": "^9.0.2",
"vis-util": "^5.0.2"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^31.0.5",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"typescript-eslint": "0.0.1-alpha.0"
},
"scripts": {
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint -c .eslintrc.json --ext .ts,.js src",
"test": "jest --config jest.config.ts",
"test-watch": "jest --watch",
"build": "tsc",
"tsc-watch": "tsc --watch",
"prepare": "npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"author": "vid"
}