-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
54 lines (54 loc) · 1.84 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
{
"name": "@silvermine/eslint-plugin-silvermine",
"version": "2.5.0",
"description": "eslint plugins to support our JS Code Standards. See @silvermine/eslint-config-silvermine",
"scripts": {
"check-node-version": "check-node-version --npm 10.5.0",
"test": "nyc mocha -- 'tests/**/*.test.js'",
"commitlint": "commitlint --from 2317166",
"eslint": "eslint .",
"markdownlint": "markdownlint -c .markdownlint.json -i CHANGELOG.md '{,!(node_modules)/**/}*.md'",
"standards": "npm run markdownlint && npm run eslint",
"release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview",
"release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog",
"release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize"
},
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/eslint-plugin-silvermine.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"@silvermine/eslint-config"
],
"license": "MIT",
"author": "Jeremy Thomerson",
"bugs": {
"url": "https://github.com/silvermine/eslint-plugin-silvermine/issues"
},
"homepage": "https://github.com/silvermine/eslint-plugin-silvermine#readme",
"dependencies": {
"class.extend": "0.9.1",
"lodash.assign": "4.2.0",
"underscore": "1.13.1"
},
"devDependencies": {
"@silvermine/eslint-config": "3.1.0-beta.1",
"@silvermine/standardization": "2.0.0",
"@typescript-eslint/parser": "5.17.0",
"coveralls": "3.0.9",
"cz-conventional-changelog": "3.0.2",
"eslint": "8.12.0",
"mocha": "5.2.0",
"nyc": "15.1.0",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}