-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 1.99 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "stromjs",
"version": "0.5.5",
"description": "Dependency-free streams utils for Node.js",
"keywords": [
"promise",
"stream",
"utils",
"async",
"data processing",
"nodejs",
"dependency-free",
"functional"
],
"engines": {
"node": ">=16.0.0"
},
"contributors": [
{
"name": "Sami Turcotte",
"url": "https://github.com/Wenzil"
},
{
"name": "Jerry Kurian",
"email": "jerrykurian@protonmail.com",
"url": "https://github.com/jkurian"
},
{
"name": "Lewis Diamond",
"email": "stromjs@lewisdiamond.com",
"url": "https://github.com/lewisdiamond"
}
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"url": "https://github.com/lewisdiamond/stromjs",
"type": "git"
},
"scripts": {
"test": "ava",
"lint": "tslint -p tsconfig.json",
"validate:tslint": "tslint-config-prettier-check ./tslint.json",
"prepublishOnly": "npm run lint && npm run test && tsc -d",
"prepare": "tsc"
},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@types/chai": "^4.3.4",
"@types/node": "^18.11.18",
"@types/sinon": "^10.0.13",
"ava": "^5.1.1",
"chai": "^4.3.7",
"prettier": "^2.8.3",
"sinon": "^15.0.1",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^4.9.5"
},
"ava": {
"files": [
"tests/*.spec.ts",
"tests/utils/*.spec.ts"
],
"failWithoutAssertions": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
]
}
}