-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 1.99 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
70
71
72
73
74
75
76
77
78
{
"version": "1.12.0",
"release": {
"branches": [
"main",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github"
]
},
"keywords": [
"textlintrule"
],
"files": [
"lib/",
"src/index.ts",
"src/index.d.ts",
"!lib/src",
"!lib/regularRule",
"!lib/test",
"!lib/createRule*",
"build/"
],
"main": "lib/index.js",
"scripts": {
"prepare": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"commitmsg": "commitlint -e $GIT_PARAMS",
"test": "jest specs/ && textlint-scripts test",
"jest": "jest specs/",
"testLint": "textlint-scripts test",
"createRule": "npx node lib/createRule.js",
"prepublish": "yarn run --if-present build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch"
},
"devDependencies": {
"@commitlint/cli": "^17.4.4",
"@commitlint/config-conventional": "^17.4.4",
"@semantic-release/changelog": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@textlint/types": "^13.3.0",
"@types/jest": "^29.4.0",
"@types/node": "^18.14.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"pinst": "^3.0.0",
"semantic-release": "^21.1.1",
"textlint-tester": "^13.3.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"name": "textlint-rule-aws-service-name",
"types": "src/index.d.ts",
"description": "Rule for AWS Product Names",
"directories": {
"test": "test"
},
"author": "bun913",
"license": "MIT",
"homepage": "https://github.com/bun913/textlint-rule-aws-service-name",
"repository": {
"type": "git",
"url": "https://github.com/bun913/textlint-rule-aws-service-name.git"
},
"dependencies": {
"textlint-rule-prh": "^5.3.0",
"textlint-scripts": "^13.3.0",
"yaml": "^2.2.1"
}
}