-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "sus-analyzer",
"version": "2.2.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/mizucoffee/sus-analyzer.git",
"author": "Ritsuki Goto <[email protected]>",
"license": "MIT",
"description": "SeaUrchinScore Analyzer",
"private": false,
"engines": {
"node": ">=8.3.0"
},
"scripts": {
"test": "jest --coverage",
"coverage": "jest --coverage; cat ./coverage/lcov.info | coveralls",
"build": "tsc"
},
"devDependencies": {
"@types/jest": "^23.3.11",
"@types/node": "^10.12.18",
"coveralls": "^3.0.2",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"istanbul": "^0.4.5",
"jest": "^23.6.0",
"prettier": "^1.15.3",
"ts-jest": "^23.10.5",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"tslint-config-prettier": "^1.17.0",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.2"
},
"dependencies": {}
}