-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.45 KB
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
{
"name": "chessstate",
"version": "1.1.4",
"description": "A chess game state manager",
"main": "bundles/ChessState.js",
"types": "ChessState.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers ts:ts-node/register test test/**/*Test.ts",
"build": "tsc",
"bundle": "tsc && webpack --mode production",
"help": "echo To bundle, `$ npm run bundle`",
"start": "node ./bundles/ChessState.js",
"super": "tsc; if [ 0 -eq $? ]; then webpack; npm start; fi;",
"transpile": "babel src/Index.ts --out-file src/index-transpiled.js"
},
"files": [
"bundles/ChessState.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/NathanTan/ChessState.git"
},
"keywords": [
"chess",
"variants",
"bughouse"
],
"author": "Nathan Tan",
"license": "MIT",
"bugs": {
"url": "https://github.com/NathanTan/ChessState/issues"
},
"homepage": "https://github.com/NathanTan/ChessState#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@babel/register": "^7.0.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"mocha": "^5.2.0",
"ts-loader": "^5.4.5",
"ts-node": "^8.0.2",
"typescript": "^3.9.10",
"webpack": "^4.14.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"test": "^3.1.0"
}
}