forked from js-csp/js-csp
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "js-csp",
"version": "0.3.2",
"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 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ubolonton/js-csp.git"
},
"license": {
"type": "MIT",
"url": "https://github.com/ubolonton/js-csp/raw/master/LICENSE"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/ubolonton/js-csp/issues"
},
"dependencies": {},
"devDependencies": {
"browserify": "^6.0.2",
"chai": "~1.9.0",
"gulp-mocha": "^1.1.1",
"mocha": "~1.17.1",
"transducers.js": "^0.2.3",
"vinyl-source-stream": "^1.0.0"
},
"engines": {
"node": ">=0.11.6"
},
"scripts": {
"test": "node --harmony ./node_modules/.bin/gulp test"
},
"main": "./src/csp.js",
"files": [
"src", "README.md", "CHANGELOG.md", "LICENSE"
]
}