-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.48 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
{
"name": "@xieyuheng/postmark",
"version": "0.2.22",
"bin": {
"postmark": "bin/postmark.js"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"format": "prettier src --write",
"test:js": "test-runner test node 'lib/**/*.test.js'",
"test:snapshot": "test-runner snapshot node 'lib/**/*.snapshot.js' --extern snapshot",
"test:postmark-format": "test-runner snapshot './bin/postmark.js format' 'examples/**/*.md' --extern snapshot",
"test:postmark-render": "test-runner snapshot './bin/postmark.js render' 'examples/**/*.md' --extern snapshot",
"test": "npm-run-all test:*"
},
"prettier": {
"semi": false,
"trailingComma": "es5"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/commonmark": "^0.27.5",
"@types/deep-diff": "^1.0.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.15.3",
"@xieyuheng/test-runner": "^0.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"typescript": "^5.0.2"
},
"dependencies": {
"@xieyuheng/command-line": "^0.0.10",
"@xieyuheng/coupler": "^0.0.3",
"@xieyuheng/readable-regular-expression": "^0.0.15",
"@xieyuheng/ty": "^0.1.22",
"commonmark": "^0.30.0",
"deep-diff": "^1.0.2",
"fast-deep-equal": "^3.1.3",
"front-matter": "^4.0.2",
"js-yaml": "^4.1.0",
"marked": "^4.2.12"
},
"license": "GPL-3.0-or-later"
}