-
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": "terrain-keypath",
"version": "1.0.9",
"description": "A tiny class that defines a key path type for e.g. traversing deep objects, along with some related utilities",
"main": "dist/KeyPath.js",
"typings": "dist/KeyPath.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 0",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/terraindata/terrain-keypath.git"
},
"keywords": [
"keypath",
"deep",
"JSON",
"path"
],
"author": "Terrain Data, Inc.",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/terraindata/terrain-keypath/issues"
},
"homepage": "https://github.com/terraindata/terrain-keypath#readme",
"files": [
"dist"
],
"dependencies": {
"immutable": "^4.0.0-rc.12"
},
"devDependencies": {
"@types/node": "^15.0.2",
"typescript": "^4.2.4"
}
}