-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "textlint-rule-no-zero-width-spaces",
"version": "1.0.1",
"description": "textlint rule that disallow zero width spaces.",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/textlint-rule/textlint-rule-no-zero-width-spaces#readme",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-no-zero-width-spaces/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/textlint-rule/textlint-rule-no-zero-width-spaces.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/hata6502"
},
"license": "MIT",
"author": "Tomoyuki Hata",
"main": "lib/index.js",
"directories": {
"test": "test"
},
"files": [
"lib/",
"src/"
],
"scripts": {
"build": "textlint-scripts build",
"prepublish": "yarn run --if-present build",
"test": "textlint-scripts test",
"watch": "textlint-scripts build --watch"
},
"devDependencies": {
"@textlint/types": "^1.3.1",
"@types/node": "^12.12.39",
"textlint-scripts": "^3.0.0",
"textlint-tester": "^5.1.15",
"ts-node": "^8.10.1",
"typescript": "^3.6.4"
}
}