-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.41 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "tree-shortcut",
"version": "2.0.0",
"description": "Simplify an object tree with a shortcut. TypeScript supported.",
"license": "MIT",
"repository": "papb/tree-shortcut",
"author": {
"name": "Pedro Augusto de Paula Barbosa",
"email": "[email protected]"
},
"engines": {
"node": ">=12.22"
},
"scripts": {
"build": "del-cli dist && tsc",
"prepack": "npm run build",
"release": "npm run build && np --no-yarn --no-2fa --no-cleanup",
"lint": "tsc --noEmit && eslint . --max-warnings 0 && prettier --check .",
"prettier": "prettier --write .",
"test": "npm run lint && npm run build && ava"
},
"main": "dist/source",
"types": "dist/source",
"files": [
"dist/source",
"!*.map",
"!*.test.*"
],
"keywords": [
"tree",
"shortcut",
"deep",
"nested",
"prop",
"property",
"object",
"array",
"typescript",
"skip",
"chop",
"record",
"simplify",
"replace",
"convert",
"structure",
"tree-structure"
],
"dependencies": {
"is-plain-obj": "^3.0.0"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@papb/linter": "^0.1.0",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^12.20",
"ava": "^3.15.0",
"del-cli": "^3.0.1",
"eslint": "^8.7.0",
"expect-type": "^0.13.0",
"json5": "^2.2.0",
"lodash.clonedeep": "^4.5.0",
"np": "^7.6.0",
"pkg-dir": "^4.2.0",
"prettier": "^2.5.1",
"source-map-support": "^0.5.21",
"typescript": "~4.5.5"
}
}