-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.72 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "@wmakeev/highland-tools",
"version": "3.1.0",
"description": "Tools for highland.js library",
"type": "module",
"keywords": [
"highland",
"highlandjs",
"stream",
"tools"
],
"files": [
"build/src/"
],
"exports": "./build/src/index.js",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"scripts": {
"compile:dev": "tsc",
"compile": "rm -rf build/ && tsc --build tsconfig.prod.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build:dev": "npm run lint:fix && npm run compile:dev",
"test": "npm run build && tape build/test",
"build": "rm -rf build/ && npm run lint:fix && npm run compile",
"version": "auto-changelog -p && git add CHANGELOG.md",
"release": "np"
},
"author": "Vitaliy V. Makeev",
"license": "MIT",
"repository": {
"type": "GitHub",
"url": "https://github.com/wmakeev/highland-tools"
},
"prettier": {
"semi": false,
"singleQuote": true,
"quoteProps": "consistent",
"trailingComma": "none",
"arrowParens": "avoid"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/highland": "^2.12.20",
"@types/node": "^20.11.5",
"@types/tape": "^5.6.4",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@typescript-eslint/typescript-estree": "^6.19.0",
"auto-changelog": "^2.4.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"highland": "^2.13.5",
"prettier": "^3.2.4",
"tape": "^5.7.3",
"typescript": "^5.3.3",
"typescript-eslint-language-service": "^5.0.5"
}
}