-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 942 Bytes
/
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
{
"name": "protocol",
"id": "protocol",
"version": "0.4.0",
"description": "Protocol based polymorphism for javascript.",
"keywords": [ "polymorphism", "protocol", "cotract" ],
"author": "Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)",
"homepage": "https://github.com/Gozala/protocol",
"repository": {
"type": "git",
"url": "https://github.com/Gozala/protocol.git",
"web": "https://github.com/Gozala/protocol"
},
"bugs": {
"url": "http://github.com/Gozala/protocol/issues/"
},
"devDependencies": {
"test": ">=0.0.10",
"repl-utils": ">=0.0.1",
"swank-js": ">=0.0.1"
},
"engines": {
"node": ">=0.4.x"
},
"main": "./core.js",
"scripts": {
"test": "node tests/test-all.js",
"repl": "node ./node_modules/repl-utils",
"swank": "node ./node_modules/swank-js"
},
"licenses": [{
"type" : "MIT",
"url" : "http://jeditoolkit.com/LICENSE"
}]
}