forked from duckpunch/godash
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 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
{
"name": "godash",
"version": "1.5.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": "^3.8.2",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/preset-env": "^7.7.4",
"babel-loader": "^8.0.6",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-webpack": "^4.0.2",
"mocha": "^6.2.2",
"puppeteer": "^2.0.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"scripts": {
"prepare": "webpack",
"watch": "webpack --watch --progress --debug",
"watch-test": "karma start --no-single-run",
"test": "karma start"
}
}