-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.35 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.35 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
{
"name": "aline",
"version": "2.0.3",
"description": "Line-boundary-aligning stream transform for Node.js and the Web Streams API",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./web": {
"import": "./dist/web.js",
"types": "./dist/web.d.ts"
},
"./core": {
"import": "./dist/core.js",
"types": "./dist/core.d.ts"
}
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc --noEmit",
"test:node": "jest index.test.ts core.test.ts",
"test:web": "jest web.test.ts",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/tugrul/node-aline.git"
},
"keywords": [
"stream",
"align",
"lines"
],
"author": "Tugrul Topuz <tugrultopuz@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tugrul/node-aline/issues"
},
"homepage": "https://github.com/tugrul/node-aline#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.19.35",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}