-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
45 lines (45 loc) · 1.2 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
{
"name": "streams-workshop",
"version": "1.0.0",
"description": "A workshop on Node.js Streams",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=16.14",
"npm": ">=8.3"
},
"engineStrict": true,
"scripts": {
"test:lint": "eslint .",
"test:unit": "TEST_SOLUTIONS=true tap --no-coverage --jobs=1 --reporter=spec */**/exercises/*.test.js",
"test": "npm run test:lint && npm run test:unit",
"ex": "tap --no-coverage --jobs=1 --reporter=spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lmammino/streams-workshop.git"
},
"keywords": [],
"author": "Luciano Mammino",
"license": "MIT",
"bugs": {
"url": "https://github.com/lmammino/streams-workshop/issues"
},
"homepage": "https://github.com/lmammino/streams-workshop#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"sinon": "^9.2.4",
"tap": "^16.0.1"
},
"dependencies": {
"desm": "^1.1.0",
"emoji": "^0.3.2",
"mock-req": "^0.2.0",
"pumpify": "^2.0.1",
"readable-stream": "^3.6.0"
}
}