-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.8 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
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "godash",
"version": "2.5.4",
"description": "Data structures and utilities to represent the game of Go",
"homepage": "https://github.com/duckpunch/godash",
"repository": {
"type": "git",
"url": "git+https://github.com/duckpunch/godash.git"
},
"main": "dist/godash.js",
"module": "src/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"keywords": [
"go",
"weiqi",
"baduk",
"immutable"
],
"author": {
"name": "duckpunch",
"url": "https://github.com/duckpunch"
},
"license": "ISC",
"dependencies": {
"immutable": "^5.1.4",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@eslint/js": "^9.39.2",
"babel-loader": "^10.0.0",
"benchmark": "^2.1.4",
"eslint": "^9.39.2",
"eslint-plugin-jest": "^29.5.0",
"globals": "^16.5.0",
"jest": "^30.2.0",
"jsdoc-to-markdown": "^9.1.3",
"node-qunit-puppeteer": "^2.2.1",
"typescript": "^5.9.3",
"webpack": "^5.76.0",
"webpack-cli": "^6.0.1"
},
"scripts": {
"prepare": "webpack",
"build": "webpack",
"lint": "eslint src",
"lint-fix": "eslint --fix src",
"watch": "webpack --watch --progress --debug",
"watch-test": "jest --coverage --watch",
"browser-test": "webpack --output-path browser/js/godash && node-qunit-puppeteer ./browser/runner.html",
"test": "jest --coverage",
"test:types": "tsc --noEmit --skipLibCheck types/test-types.ts",
"update-api-docs": "jsdoc2md --files src/board.js --files src/sgf.js --template templates/api.hbs --helper templates/helpers.js > docs/api.md"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
}
}