forked from K4us/khmer-chess-board.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.13 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
{
"name": "khmer-chess-board",
"version": "1.0.61",
"description": "Khmer Chess Javascript library to simulate chess board",
"main": "dist/src/index.js",
"types": "src/index.ts",
"scripts": {
"start": "webpack serve --config webpack.config.dev.js",
"build:bundle": "webpack --config webpack.config.js",
"build:js": "del-cli dist -f && npm run lint && tsc",
"build": "npm run build:js && npm run build:bundle",
"lint": "eslint . --ext .ts ./src",
"kc:ts:gen": "dts-gen -m khmer-chess -f ./node_modules/khmer-chess/index.d.ts",
"test": "karma start karma.conf.js",
"cov": "http-server coverage/ -o",
"commit:ver": "export CURRENT_VERSION=$(grep \\\"version\\\": ./package.json | sed 's/.*: \"\\(.*\\)\".*/\\1/') && git commit -am \"release version $CURRENT_VERSION\"",
"pub": "npm i && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/K4us/khmer-chess-board.js.git"
},
"author": "Raksa Eng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/K4us/khmer-chess-board.js/issues"
},
"homepage": "https://github.com/K4us/khmer-chess-board.js#readme",
"keywords": [
"Khmer",
"KhmerChess",
"Chess",
"Board"
],
"dependencies": {
"k4us-share": "^1.0.13",
"khmer-chess": "^1.0.65"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/chai-spies": "^1.0.3",
"@types/mocha": "^9.0.0",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"chai": "^4.3.4",
"chai-spies": "^1.0.0",
"del-cli": "^4.0.1",
"eslint": "^7.20.0",
"http-server": "^13.0.1",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-typescript": "^5.5.2",
"mocha": "^9.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-loader": "0.2.3",
"ts-loader": "^9.2.5",
"typescript": "^4.4.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
}
}