-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.82 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
{
"name": "textlint-util-to-string",
"version": "3.3.4",
"description": "textlint utility that convert Paragraph Node to text with SourceMap.",
"homepage": "https://github.com/textlint/textlint-util-to-string",
"bugs": {
"url": "https://github.com/textlint/textlint-util-to-string/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint/textlint-util-to-string.git"
},
"license": "MIT",
"author": "azu",
"files": [
"lib",
"src",
"dist"
],
"source": "src/index.ts",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "microbundle --external none",
"prepublish": "npm run --if-present build",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && mocha \"test/**/*.{js,ts}\"",
"watch": "tsc -p . --watch",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@textlint/ast-node-types": "^13.4.1",
"rehype-parse": "^6.0.1",
"structured-source": "^4.0.0",
"unified": "^8.4.0"
},
"devDependencies": {
"@textlint/markdown-to-ast": "^13.4.1",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.0",
"cross-env": "^7.0.3",
"lint-staged": "^15.1.0",
"microbundle": "^0.15.1",
"mocha": "^10.2.0",
"prettier": "^3.1.0",
"sentence-splitter": "^5.0.0",
"ts-node": "^10.9.1",
"ts-node-test-register": "^10.0.0",
"typescript": "^5.3.2"
},
"email": "[email protected]",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}