-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.05 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
{
"name": "optional-typescript",
"version": "1.8.0",
"description": "An optional library enabling the usage of optionals written in TypeScript",
"keywords": [
"optional",
"maybe",
"maybe type",
"optional type",
"functional optional type",
"typescript optional type",
"typescript optional"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nikolaj Hass <nifthass@gmail.com>",
"contributors": [
"Nikolaj Hass <optional+nifthass@gmail.com>"
],
"repository": {
"type": "git",
"url": "https://github.com/Nift/Optional"
},
"homepage": "https://github.com/Nift/Optional#readme",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"@types/mocha": "^7.0.1",
"jest": "^23.5.0",
"reflect-metadata": "^0.1.12",
"ts-jest": "^23.1.4",
"ts-node-dev": "^1.0.0-pre.26",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.7.5"
}
}