-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 905 Bytes
/
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
{
"name": "standardizer",
"description": "A tiny service to lint and fix JavaScript code using JavaScript Standard Style.",
"version": "3.0.0",
"author": "Dan Flettre <flettre@gmail.com>",
"bugs": {
"url": "https://github.com/standard/standardizer/issues"
},
"type": "module",
"dependencies": {
"restify": "^8.6.0",
"restify-cors-middleware2": "^2.1.2",
"restify-errors": "^8.0.2"
},
"devDependencies": {
"portfinder": "^1.0.28",
"restify-clients": "^3.1.0",
"standard": "^17.0.0",
"tape": "^5.0.1"
},
"engines": {
"node": "16.x"
},
"homepage": "https://github.com/standard/standardizer",
"keywords": [],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/standard/standardizer.git"
},
"scripts": {
"start": "node index.js",
"test": "standard && tape test/*.js"
}
}