This repository has been archived by the owner on Nov 18, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.76 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
62
63
64
65
66
67
68
69
70
{
"name": "@async-generators/filter",
"description": "filter an iterable sequence ",
"version": "0.1.0",
"author": {
"name": "Meirion Hughes",
"email": "[email protected]",
"url": "https://github.com/MeirionHughes"
},
"keywords": [
"async",
"iterator",
"generator",
"esnext",
"typescript"
],
"license": "MIT",
"main": "./dist/commonjs/index.js",
"typings": "./dist/commonjs/index.d.ts",
"module": "./dist/es2015/index.js",
"repository": {
"type": "git",
"url": "https://github.com/async-generators/filter.git"
},
"bugs": {
"url" : "https://github.com/async-generators/filter/issues"
},
"devDependencies": {
"@async-generators/equal": "^0.2.1",
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"codecov": "^2.3.0",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"ts-node": "^3.3.0",
"typescript": "^2.5.2"
},
"scripts": {
"test": "nyc node_modules/mocha/bin/mocha --harmony-async-iteration --require source-map-support/register --compilers ts:ts-node/register test/*.ts",
"build": "npm run build:commonjs && npm run build:es2015",
"build:commonjs": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist/commonjs",
"build:es2015": "tsc --project tsconfig.build.json --rootDir src/ --outDir ./dist/es2015 --module es2015",
"cover": "codecov"
},
"engines": {
"node": ">=8.5.0"
},
"nyc": {
"exclude": [
"node_modules/",
"test/",
"coverage/"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"lcov"
],
"sourceMap": true,
"instrument": true
}
}