-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 859 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 859 Bytes
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
{
"name": "query-iterator",
"version": "0.1.0",
"description": "Lazy operators for JavaScript iterators",
"main": "lib/index.js",
"repository": "https://github.com/VevoxDigital/query-iterator",
"author": "Matthew Struble <matt@vevox.io>",
"license": "MIT",
"type": "module",
"scripts": {
"lint": "eslint ./src",
"build": "tsc --build tsconfig.build.json",
"test": "jest"
},
"jest": {
"preset": "ts-jest"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"eslint": "^7.21.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.2.1",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}