-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.1 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
{
"name": "@alizeait/flatto",
"version": "2.0.0",
"description": "A tiny (~200B) and fast nested object flattener",
"scripts": {
"build": "microbundle -f modern,cjs",
"dev": "microbundle watch",
"test": "npx jest"
},
"main": "dist/index.js",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/alizeait/flatto.git"
},
"files": [
"dist"
],
"keywords": [
"object",
"array",
"nested",
"flat",
"flatten",
"seperator",
"fast",
"tiny",
"small"
],
"author": {
"name": "Ali Zeaiter",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/alizeait/flatto/issues"
},
"homepage": "https://github.com/alizeait/flatto#readme",
"devDependencies": {
"@types/jest": "^26.0.20",
"benchmark": "^2.1.4",
"codecov": "^3.8.1",
"flat": "^5.0.2",
"flatify-obj": "^2.0.0",
"jest": "^26.6.3",
"microbundle": "^0.13.0",
"objnest": "^5.1.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}