-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 1001 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
37
38
39
{
"name": "isren",
"version": "1.1.0",
"description": "isren - ISsue Rendering ENgine",
"main": "./src/index.js",
"scripts": {
"test": "NODE_ENV=test jest ",
"coverage": "jest --coverage",
"format": "prettier '**/**.js' --write",
"start": "node ./src/CLI.js",
"lint": "eslint '**/**.js'"
},
"bin": {
"isren": "./src/CLI.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sony/isren"
},
"author": "Zack Urben <[email protected]>",
"license": "MIT",
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"jest": "^26.6.3",
"prettier": "^1.19.1"
},
"dependencies": {
"@gitbeaker/node": "^25.6.0",
"commander": "^4.0.1",
"csv-stringify": "^5.3.0",
"dotenv": "^8.0.0"
}
}