-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.08 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
{
"name": "@athombv/stream-trim",
"version": "1.0.1",
"description": "Trims a given portion from an input stream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"test": "ts-mocha 'test/**/*.ts'",
"lint": "eslint lib/**/*.ts test/**/*.ts"
},
"keywords": [
"node",
"stream",
"trim"
],
"repository": {
"type": "git",
"url": "git+https://github.com/athombv/node-stream-trim.git"
},
"author": "Many Talented People @ Athom B.V.",
"bugs": {
"url": "https://github.com/athombv/node-stream-trim/issues"
},
"homepage": "https://github.com/athombv/node-stream-trim#readme",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.34",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^6.8.0",
"eslint-config-athom": "^2.0.6",
"mocha": "^10.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
}
}