-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.66 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
{
"private": true,
"license": "MIT",
"author": "psxcode <[email protected]> (https://github.com/psxcode)",
"homepage": "https://github.com/psxcode/promise-streams",
"workspaces": [
"promised-streams",
"promised-streams-test"
],
"scripts": {
"cover": "NODE_ENV=test nyc mocha './*/test/*.spec.ts'",
"test": "NODE_ENV=test mocha --require register.js './*/test/*.spec.ts'",
"copy": "scripts/copy.sh",
"build:ps": "scripts/build.sh promised-streams",
"build:pst": "scripts/build.sh promised-streams-test"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-typescript": "^7.3.3",
"@babel/register": "^7.4.4",
"@psxcode/compose": "^0.1.3",
"@psxcode/wait": "^0.1.1",
"@types/chai": "^4.1.7",
"@types/debug": "^4.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-preset-minify": "^0.5.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"debug": "^4.1.1",
"eslint": "^6.0.1",
"eslint-plugin-import": "^2.18.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"rimraf": "^3.0.0",
"test-fn": "^0.1.3",
"typescript": "^3.5.3"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"promised-streams/src",
"promised-streams-test/src"
],
"require": [
"./register.js"
],
"reporter": [
"lcov",
"text-summary"
]
}
}