-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 925 Bytes
/
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
{
"name": "ts-left-join",
"version": "2.0.1",
"description": "Typescript-friendly implementation of a left join on arrays",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build",
"test": "jest",
"prepublishOnly": "npm install && npm-run-all test build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Barbarrosa/ts-left-join.git"
},
"keywords": [
"typescript",
"left-join",
"join"
],
"author": "Tim Bradley",
"license": "MIT",
"bugs": {
"url": "https://github.com/Barbarrosa/ts-left-join/issues"
},
"homepage": "https://github.com/Barbarrosa/ts-left-join#readme",
"devDependencies": {
"@types/faker": "^4.1.5",
"@types/jest": "^23.3.13",
"faker": "^4.1.0",
"jest": "^23.6.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^23.10.5",
"typescript": "^3.2.4"
},
"dependencies": {}
}