forked from textlint/textlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.47 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
{
"name": "@textlint/ast-tester",
"version": "13.3.3",
"description": "Compliance tests for textlint's AST(Abstract Syntax Tree).",
"keywords": [
"ast",
"suite",
"test",
"testing",
"textlint"
],
"homepage": "https://github.com/textlint/textlint/tree/master/packages/@textlint/ast-tester",
"bugs": {
"url": "https://github.com/textlint/textlint/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint/textlint.git"
},
"license": "MIT",
"author": "azu",
"main": "lib/src/index.js",
"module": "./module/src/index.js",
"types": "lib/src/index.d.ts",
"directories": {
"test": "test"
},
"files": [
"bin/",
"lib/",
"module/",
"src/",
"!*.tsbuildinfo"
],
"scripts": {
"build": "tsc -b && tsc -b tsconfig.module.json",
"clean": "rimraf lib/ module/",
"prepack": "npm run --if-present build",
"test": "mocha",
"watch": "tsc -b --watch"
},
"dependencies": {
"@textlint/ast-node-types": "^13.3.3",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.18",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "~4.9.4"
},
"publishConfig": {
"access": "public"
},
"email": "[email protected]"
}