-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 937 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 937 Bytes
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
{
"name": "kgsclient",
"author": {
"name": "Ryo Anazawa",
"email": "anazawa@metakgs.org"
},
"description": "Polling library for the KGS protocol",
"version": "0.0.1",
"homepage": "https://github.com/anazawa/kgsclient",
"repository": {
"type": "git",
"url": "git://github.com/anazawa/kgsclient.git"
},
"main": "index.js",
"files": [
"index.js",
"README.md",
"package.json",
"test"
],
"dependencies": {},
"devDependencies": {
"tape": "^3.0.3",
"jshint": "^2.5.8",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"clean": "rm -r dist",
"lint": "jshint index.js test/*.js",
"pretest": "npm run lint",
"test": "tape 'test/test.*.js'",
"prebuild": "npm run clean",
"build": "node ./scripts/build.js",
"preversion": "npm test",
"postversion": "git push && git push --tags"
},
"license": "MIT",
"engines": {
"node": "*"
}
}