-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
74 lines (74 loc) · 2.06 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
{
"name": "eslint-plugin-atomic-design",
"version": "1.0.1",
"description": "ESLint rules for Atomic Designed projects",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"atomic design"
],
"author": "Ryonkmr",
"main": "lib/index.js",
"scripts": {
"test": "mocha tests/lib --recursive",
"test:ci": "nyc mocha tests/lib --recursive && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint examples --rulesdir ./lib/rules",
"prettify": "prettier --write ./lib/**/*.js ./tests/**/*.js",
"semantic-release": "semantic-release",
"commit": "cz",
"prepare": "husky install"
},
"dependencies": {
"eslint-import-resolver-alias": "^1.1.2",
"eslint-module-utils": "^2.6.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": ">=7.22.0",
"eslint-plugin-import": "^2.22.1",
"husky": "^5.1.3",
"mocha": "^8.3.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2"
},
"homepage": "https://github.com/RyoNkmr/eslint-plugin-atomic-design",
"repository": {
"type": "git",
"url": "https://github.com/RyoNkmr/eslint-plugin-atomic-design.git"
},
"bugs": {
"url": "https://github.com/RyoNkmr/eslint-plugin-atomic-design/issues"
},
"peerDependencies": {
"eslint": ">=7.22.0"
},
"engines": {
"node": ">=12.16.2"
},
"license": "MIT",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}