-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 839 Bytes
/
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
{
"name": "link-format",
"main": "./lib/index",
"version": "1.0.1",
"description": "Replaces URLs as a Markdown link",
"keywords": [],
"repository": "https://github.com/muroon/inkdrop-link-format",
"license": "MIT",
"engines": {
"inkdrop": "^5.x"
},
"scripts": {
"test": "jest",
"lint:eslint": "npx eslint \"lib/*.js\"",
"lint:prettier": "npx prettier --check ./lib",
"fix:eslint": "npx eslint \"lib/*.js\" --fix",
"fix:prettier": "npx prettier --write ./lib"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"babel-jest": "^26.6.3",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.23.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1"
}
}