-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 984 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 984 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "getinto",
"version": "0.1.1",
"description": "A simple JS package to access a value in a object",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib"
],
"author": "Jonathan R C <jonarc06@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc",
"pretest": "tsc",
"test": "jest"
},
"devDependencies": {
"@types/babel__template": "^7.4.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/JonRC/getinto.git"
},
"keywords": [
"deep",
"get",
"propertie",
"properties",
"function",
"array",
"in",
"into",
"object",
"objects"
],
"bugs": {
"url": "https://github.com/JonRC/getinto/issues"
},
"homepage": "https://github.com/JonRC/getinto"
}