-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.6 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
{
"name": "godash",
"version": "2.3.0",
"description": "Data structures and utilities to represent the game of Go",
"homepage": "https://github.com/duckpunch/godash",
"repository": {
"type": "git",
"url": "https://github.com/duckpunch/godash.git"
},
"main": "dist/godash.js",
"types": "types/index.d.ts",
"keywords": [
"go",
"weiqi",
"baduk",
"immutable"
],
"author": {
"name": "duckpunch",
"url": "https://github.com/duckpunch"
},
"license": "ISC",
"dependencies": {
"immutable": "^4.1.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"babel-loader": "^8.2.5",
"benchmark": "^2.1.4",
"eslint": "^8.19.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.1",
"jsdoc-to-markdown": "^7.1.1",
"node-qunit-puppeteer": "^2.1.0",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0"
},
"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",
"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
}
}
}
}