-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 898 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
{
"name": "naushon",
"version": "0.6.6",
"description": "Pipelined transformations using AsyncIterators",
"keywords": [
"async",
"iterator",
"asynciterator",
"transducer",
"incremental",
"pipeline",
"stream"
],
"homepage": "https://github.com/nhusher/naushon",
"bugs": {
"url": "https://github.com/nhusher/naushon/issues"
},
"engines": {
"node": ">11"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha --require ts-node/register src/*.test.ts"
},
"author": "Nicholas Husher <[email protected]>",
"repository": {
"url": "https://github.com/nhusher/naushon",
"type": "git"
},
"license": "MIT",
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.14",
"mocha": "^10.2.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.7"
}
}