This repository has been archived by the owner on Nov 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 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
{
"name": "levelup-async-iterator",
"version": "0.3.0",
"description": "expose iterator with injected [Symbol.asyncIterator]",
"author": {
"name": "Meirion Hughes",
"email": "[email protected]",
"url": "https://github.com/MeirionHughes"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MeirionHughes/levelup-async-iterator.git"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"abstract-leveldown": "^2.7.1",
"chai": "^4.1.2",
"concurrently": "^3.5.0",
"encoding-down": "^2.3.1",
"leveldown": "^2.0.0",
"memdown": "^1.4.1",
"mocha": "^3.5.2",
"nyc": "^11.2.1",
"source-map-support": "^0.4.18",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"dependencies": {
"@async-generators/terminator": "^0.2.0",
"levelup": "^2.0.0"
},
"scripts": {
"test": "nyc node_modules/mocha/bin/_mocha --require source-map-support/register --compilers ts:ts-node/register test/*.ts",
"build": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist "
},
"nyc": {
"exclude": [
"node_modules/",
"test/"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}