-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "chess-clock",
"description": "Chess clock engine",
"author": "Nikola Radulaški",
"license": "MIT",
"version": "0.5.0",
"keywords": [
"chess",
"chessclock",
"chess-clock",
"game",
"gameclock",
"game-clock",
"board-game",
"boardgame",
"clock",
"timer",
"timing",
"delay",
"fischer",
"bronstein",
"hourglass"
],
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"exports": {
".": "./lib/esm/index.js",
"./esm": "./lib/esm/index.js",
"./cjs": "./lib/cjs/index.js"
},
"types": "./lib/esm/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/radulle/chess-clock.git"
},
"bugs": {
"url": "https://github.com/radulle/chess-clock/issues"
},
"homepage": "https://github.com/radulle/chess-clock",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/* && tsc && tsc --target es5 --module commonjs --outDir ./lib/cjs --downlevelIteration && echo { \"type\": \"module\" } > ./lib/esm/package.json && echo { \"type\": \"commonjs\" } > ./lib/cjs/package.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-plugin-jest": "^24.3.6",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typescript": "^4.2.4"
}
}