forked from js-csp/js-csp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 959 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
36
37
38
{
"name": "js-csp",
"version": "0.2.4-dev",
"description": "CSP channels with ES6 generators, inspired by Clojurescript's core.async and Go",
"keywords": [
"csp", "async", "concurrency", "channel",
"go", "clojure", "clojurescript", "core.async",
"es6", "generators", "yield", "coroutines"
],
"author": "Nguyễn Tuấn Anh <ubolonton@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ubolonton/js-csp.git"
},
"license": {
"type": "EPL",
"url": "https://github.com/ubolonton/js-csp/raw/master/LICENSE"
},
"bugs": {
"email": "ubolonton@gmail.com",
"url": "https://github.com/ubolonton/js-csp/issues"
},
"dependencies": {},
"devDependencies": {
"chai": "~1.9.0",
"mocha": "~1.17.1"
},
"engines": {
"node": ">=0.11.6"
},
"scripts": {
"test": "make test"
},
"main": "./src/csp.js",
"files": [
"src", "README.md", "CHANGELOG.md", "LICENSE"
]
}