-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.46 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
{
"name": "scrabble-core",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/ahape/scabble-core.git",
"author": "<ahape@brightmetrics.com>",
"license": "MIT",
"scripts": {
"test-win": "set TS_NODE_COMPILER_OPTIONS={\"module\": \"commonjs\" } & mocha -r ts-node/register 'tests/*.ts'",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/*.ts'",
"cli-win": "set TS_NODE_COMPILER_OPTIONS={\"module\": \"commonjs\" } & ts-node cli/index.ts",
"cli": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' ts-node cli/index.ts",
"build": "tsc -p ./",
"build-types": "tsc src/scrabblecore.ts --declaration --emitDeclarationOnly --skipLibCheck --outFile dist/types/scrabblecore/index.d.ts",
"bundle": "npx webpack",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"knockout": "^3.5.1",
"underscore": "^1.13.1"
},
"devDependencies": {
"@types/knockout": "^3.4.70",
"@types/mocha": "^8.2.2",
"@types/node": "^16.0.0",
"@types/underscore": "^1.11.3",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"eslint": "^7.30.0",
"mocha": "^9.0.2",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.5",
"webpack": "^5.42.0",
"webpack-cli": "^4.7.2"
}
}