-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 KB
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
{
"name": "@0devs/async-pipe",
"version": "0.7.1",
"description": "",
"main": "lib/Pipe.js",
"types": "lib/Pipe.d.ts",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"clean": "rm -rf lib coverage npm-debug.log",
"build": "tsc",
"lint": "eslint --ext .js,ts ./src",
"ts": "tsc --watch",
"ts-trace": "tsc --traceResolution",
"ci": "npm run lint && npm run test:coverage",
"prepublish": "npm run clean && npm run lint && npm test && npm run build",
"postversion": "git push && git push --tags"
},
"author": "alekzonder <alekzonder@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/0devs/node-async-pipe.git"
},
"license": "MIT",
"devDependencies": {
"@0devs/package": "^0.18.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.3.1",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.7.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.6",
"tslint-sonarts": "^1.9.0",
"typescript": "^4.2.4"
}
}