-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "create-textlint-rule-example",
"version": "2.0.0",
"description": "A command line tool that create examples from textlint rule's test cases.",
"keywords": [
"textlint",
"tester",
"document",
"readme",
"example"
],
"homepage": "https://github.com/textlint/create-textlint-rule-example",
"bugs": {
"url": "https://github.com/textlint/create-textlint-rule-example/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint/create-textlint-rule-example.git"
},
"license": "MIT",
"author": "azu",
"main": "lib/index.js",
"type": "module",
"bin": {
"create-textlint-rule-example": "bin/cmd.js"
},
"directories": {
"test": "test"
},
"files": [
"bin/",
"src/"
],
"scripts": {
"test": "mocha test/",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"clone": "^2.1.1",
"concat-stream": "^2.0.0",
"lodash.uniq": "^4.5.0",
"meow": "^10.0.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}