-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
45 lines (45 loc) · 1.06 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
{
"name": "weiqi",
"version": "1.0.0",
"description": "An implementation of the ancient Chinese board board Go (Chinese: wéiqí, Korean: baduk, Japanese: igo)",
"main": "dist/index.js",
"files": [
"LICENSE-ISC.txt",
"dist"
],
"scripts": {
"test": "make test",
"build": "make clean && make",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/cjlarose/weiqi.js.git"
},
"keywords": [
"baduk",
"go",
"weiqi",
"board",
"game"
],
"author": "Chris LaRose <[email protected]> (http://cjlarose.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/cjlarose/weiqi.js/issues"
},
"homepage": "https://github.com/cjlarose/weiqi.js",
"dependencies": {
"immutable": "^3.6.2"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babelify": "^7.3.0",
"browserify": "^9.0.8",
"eslint": "^3.7.0",
"eslint-config-airbnb-base": "^8.0.0",
"eslint-plugin-import": "^1.16.0",
"mocha": "~2.0.1"
}
}