-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "@lint-md/ast-plugin",
"version": "1.0.1",
"description": "The simplest abstract syntax tree walker.",
"main": "lib/index.js",
"module": "esm/index.js",
"scripts": {
"test": "jest --no-cache",
"lib:cjs": "tsc -p tsconfig.json --target ES5 --module commonjs --outDir lib",
"lib:esm": "tsc -p tsconfig.json --target ES5 --module ESNext --outDir esm",
"clean": "rimraf lib esm",
"build": "run-p lib:*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lint-md/ast-plugin.git"
},
"keywords": [
"ast",
"plugin",
"ast-plugin"
],
"author": "hustcc",
"license": "MIT",
"files": [
"lib",
"esm",
"src"
],
"bugs": {
"url": "https://github.com/lint-md/ast-plugin/issues"
},
"homepage": "https://github.com/lint-md/ast-plugin#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"remark-parse": "^6.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3",
"unified": "^7.0.1"
},
"jest": {
"preset": "ts-jest",
"collectCoverage": true,
"testEnvironment": "node",
"testRegex": "(/__tests__/.*\\.(test|spec))\\.tsx?$",
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
]
}
}