-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.17 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": "kstg",
"version": "0.7.0",
"description": "Kirikiri KAG script parser",
"keywords": [
"kirikiri",
"parser"
],
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"build:watch": "npx tsc -w",
"test": "npx jest",
"test:watch": "npx jest --watch",
"coverage": "npx jest --all --coverage",
"lint": "npx eslint {test,src}/**/*.ts",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/komsomolskinari/kstg"
},
"author": "Komsomolsk Inari (https://github.com/komsomolskinari)",
"license": "0-BSD",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.8",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"coveralls": "^3.0.4",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"dependencies": {}
}