-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "mdast-util-from-adf",
"version": "2.1.1",
"description": "Convert from Atlassian Document Format to Markdown Abstract Syntax Tree",
"license": "MIT",
"author": {
"name": "bitcrowd GmbH.",
"url": "https://bitcrowd.net",
"email": "info@bitcrowd.net"
},
"repository": "github:bitcrowd/mdast-util-from-adf",
"type": "module",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "del-cli dist && tsc --project tsconfig.dist.json",
"lint": "eslint --ext .js,.ts --ignore-path .gitignore --max-warnings 0 .",
"test": "jest",
"prepare": "npm run build"
},
"dependencies": {
"@atlaskit/adf-schema": "^24.0.0",
"@types/mdast": "^3.0.0",
"unist-builder": "^3.0.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@types/chance": "^1.1.3",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chance": "^1.1.8",
"del-cli": "^4.0.1",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
}
}