-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 956 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
39
40
41
{
"name": "kefir-process",
"version": "1.0.2",
"description": "Using kefir to create communicating processes.",
"main": "lib/api.js",
"scripts": {
"test": "node node_modules/standard/bin/cmd.js src/**/*.js && gulp && node node_modules/ava/cli.js"
},
"keywords": [
"Stream-processing",
"kefir"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LittleHelicase/kefir-process.git"
},
"devDependencies": {
"ava": "^0.10.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-concat": "^2.6.0",
"gulp-sourcemaps": "^1.6.0",
"standard": "^5.4.1"
},
"author": "Maximilian Klein",
"license": "MIT",
"dependencies": {
"kefir": "^3.2.0",
"kefir-node-stream": "elsehow/kefir-node-stream"
},
"ava": {
"files": [
"test/*.js"
],
"require": [
"babel-core/register"
]
}
}