-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"name": "stdlint",
"version": "0.0.2",
"description": "A non-opinionated development standard linter that helps you keep your repositories clean and consistent!",
"main": "index.js",
"bin": {
"stdlint": "index.js"
},
"scripts": {
"test": "nyc --reporter=lcov mocha './test/**/*.js'",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepal/stdlint"
},
"engines": {
"node": ">14"
},
"author": "Deepal Jayasekara <dpjayasekara@gmail.com>",
"license": "ISC",
"dependencies": {
"cli-progress": "^3.9.0",
"colors": "^1.4.0",
"commander": "^7.2.0",
"js2xmlparser": "^4.0.1",
"octokit": "^1.0.3",
"simple-git": "^2.38.0"
},
"devDependencies": {
"chai": "^4.3.4",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3",
"sinon": "^10.0.0",
"standard-version": "^9.3.0"
}
}