-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.14 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
{
"name": "typesafe-get",
"version": "2.1.2",
"description": "A typesafe way to get nested properties when any parent property might be undefined, while we wait for the optional chaining operator to finally exist",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"index.ts"
],
"scripts": {
"test": "mocha -r ts-node/register test.ts",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pimterry/typesafe-get.git"
},
"keywords": [
"typescript",
"typesafe",
"get",
"optional",
"chaining",
"optional chaining",
"lookup",
"property",
"undefined",
"null",
"safe"
],
"author": "Tim Perry <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pimterry/typesafe-get/issues"
},
"homepage": "https://github.com/pimterry/typesafe-get#readme",
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"chai": "^4.1.2",
"mocha": "^5.0.1",
"ts-node": "^7.0.0",
"typescript": "^2.9.2"
},
"dependencies": {}
}