-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.4 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ts-mdast",
"version": "1.0.0",
"description": "Typescript utilities for Markdown Abstract Syntax Tree",
"keywords": [
"markdown",
"abstract syntax tree",
"syntax tree",
"mdast",
"typescript",
"create",
"type guard",
"guard"
],
"homepage": "https://github.com/slune-org/ts-mdast#readme",
"bugs": {
"url": "https://github.com/slune-org/ts-mdast/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/slune-org/ts-mdast.git"
},
"license": "MIT",
"author": "Slune",
"type": "commonjs",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib/**",
"!lib/**/*.spec.*",
"!lib/**/*.map"
],
"scripts": {
"prepublishOnly": "pm-exec run all",
"all": "pm-exec run clean && pm-exec run test && pm-exec run build",
"test": "pm-exec run test:lint && pm-exec run test:depends && pm-exec run test:unit",
"test:lint": "eslint --config .eslintrc.full.yaml 'src/**/*.ts'",
"test:depends": "depcheck",
"test:unit": "cross-env TS_NODE_FILES=true nyc mocha 'src/**/*.spec.ts'",
"build": "pm-exec run build:main",
"build:main": "tsc --project tsconfig.project.json",
"debug": "pm-exec run debug:watch",
"debug:watch": "onchange 'src/**' -- pm-exec run test:unit",
"clean": "rimraf lib"
},
"dependencies": {
"@types/mdast": "^3.0.3",
"@types/unist": "^2.0.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "1.0.1",
"@types/chai": "4.2.11",
"@types/chai-as-promised": "7.1.2",
"@types/mocha": "7.0.2",
"@types/node": "13.9.3",
"@typescript-eslint/eslint-plugin": "2.25.0",
"@typescript-eslint/parser": "2.25.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"cross-env": "7.0.2",
"depcheck": "0.9.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-import": "2.20.1",
"eslint-plugin-jsdoc": "22.1.0",
"eslint-plugin-node": "11.0.0",
"eslint-plugin-prettier": "3.1.2",
"mocha": "7.1.1",
"nyc": "15.0.0",
"onchange": "6.1.0",
"pm-exec": "1.0.0",
"prettier": "2.0.2",
"remark-frontmatter": "1.3.3",
"remark-parse": "7.0.2",
"remark-stringify": "7.0.4",
"rimraf": "3.0.2",
"source-map-support": "0.5.16",
"ts-node": "8.8.1",
"typescript": "3.8.3",
"unified": "8.4.2"
},
"peerDependencies": {},
"engines": {
"node": ">=10.0.0"
}
}