forked from js-csp/js-csp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "core-async",
"version": "0.0.1",
"description": "A fork of js-csp exploring a different API. Implementation will be kept in sync with js-csp as much as possible.",
"keywords": [
"csp",
"async",
"concurrency",
"channel",
"go",
"clojure",
"clojurescript",
"core.async",
"es6",
"generators",
"yield",
"coroutines"
],
"author": "fork: Chris Andrews <[email protected]> js-csp author: Nguyễn Tuấn Anh <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/chris-andrews/core-async.git"
},
"license": {
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/chris-andrews/core-async/issues"
},
"dependencies": {
"transducers.js": "^0.3.2"
},
"devDependencies": {
"babel": "^5.6.4",
"babel-loader": "^5.2.2",
"babel-runtime": "^5.6.15",
"browserify": "^6.0.2",
"chai": "~1.9.0",
"gulp": "^3.8.10",
"gulp-mocha": "^1.1.1",
"mocha": "~1.17.1",
"transducers.js": "^0.3.0",
"vinyl-source-stream": "^1.0.0"
},
"engines": {
"node": ">=0.11.6"
},
"scripts": {
"test": "node --harmony ./node_modules/.bin/gulp test",
"bundle": "node ./node_modules/.bin/gulp bundle"
},
"main": "./src/api-wrapper.js",
"files": [
"src",
"README.md",
"CHANGELOG.md",
"LICENSE"
]
}