-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.25 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
{
"name": "nodejs-streams",
"version": "0.0.1",
"description": "Comprendre les Streams en Node.js",
"main": "index.js",
"engines": {
"node" : ">=10"
},
"scripts": {
"format:check": "prettier --check src/**/*",
"format": "prettier --write src/**/*",
"lint": "eslint --ext .ts src/",
"test": "jest",
"build": "tsc",
"ts": "ts-node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xebia-france/nodejs-streams.git"
},
"author": "Stéphane Francel <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/xebia-france/nodejs-streams/issues"
},
"homepage": "https://github.com/xebia-france/nodejs-streams#readme",
"devDependencies": {
"@types/jest": "^24.0.23",
"@types/node": "^12.12.11",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.1.0",
"ts-node": "^8.5.2",
"typescript": "^3.7.2"
},
"dependencies": {
"log-update": "^3.3.0"
}
}