-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.26 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
{
"version": "1.0.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=12"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"test:ci": "tsdx test --ci --coverage --maxWorkers=2",
"test:watch": "tsdx test --watch",
"lint": "tsdx lint",
"prepare": "tsdx build",
"setup": "npm install && npm run validate",
"validate": "npm run lint && npm run test"
},
"peerDependencies": {},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": "@doist/prettier-config",
"name": "@doist/remark-application-links",
"author": "Henning Muszynski",
"module": "dist/remark-application-links.esm.js",
"devDependencies": {
"@doist/prettier-config": "^3.0.5",
"@types/unist": "^2.0.3",
"husky": "^4.3.0",
"remark": "^12.0.1",
"remark-html": "^12.0.0",
"tsdx": "^0.14.0",
"tslib": "^2.0.1",
"typescript": "^4.0.3"
},
"dependencies": {
"unist-util-flatmap": "^1.0.0",
"unist-util-visit-parents": "^3.1.0"
}
}