This repository has been archived by the owner on Apr 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
75 lines (75 loc) · 2.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "json-kifu-format",
"version": "1.3.1",
"description": "JSON棋譜フォーマット(JKF)の定義とその関連ライブラリ",
"main": "dist/json-kifu-format.js",
"types": "dist/src/main.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack --mode=production",
"build:analyze": "npm run build -- --env analyze",
"build:watch": "webpack --watch",
"lint": "eslint ./ && prettier --check .",
"lint:fix": "eslint ./ --fix && prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"typecheck": "tsc --project tsconfig.typecheck.json --noEmit",
"prepublishOnly": "npm run build",
"docs": "typedoc --exclude '**/__tests__/**/*' src/main.ts",
"deploy:ghpages": "rm -rf ./public && mkdir -p ./public && npm run docs && mv ./docs ./public/",
"schema:compile": "ajv compile --spec=draft2020 --strict-tuples=false -s specification/json-kifu-format.schema.json",
"schema:validate": "ajv validate --spec=draft2020 --strict-tuples=false -s specification/json-kifu-format.schema.json -d 'specification/files/*.json'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/na2hiro/json-kifu-format.git"
},
"keywords": [
"shogi",
"json",
"kifu",
"format",
"jkf"
],
"author": "na2hiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/na2hiro/json-kifu-format/issues"
},
"homepage": "https://github.com/na2hiro/json-kifu-format#readme",
"devDependencies": {
"@types/jest": "^28.1.4",
"@types/node": "^13.1.1",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"ajv-cli": "^5.0.0",
"clean-webpack-plugin": "^4.0.0",
"eslint": "^8.17.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.5.3",
"iconv-lite": "^0.6.3",
"jest": "^28.1.2",
"jschardet": "^1.3.0",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.6",
"pre-push": "^0.1.1",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"ts-loader": "^4.5.0",
"typedoc": "^0.22.11",
"typescript": "^4.0.0",
"webpack": "^5.65.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"shogi.js": "^2.0.5"
},
"pre-push": [
"lint",
"test"
]
}