-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 904 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
38
39
40
41
{
"name": "plain-object",
"version": "2.0.0",
"description": "Convert nested JSON to simple plain JSON object",
"license": "MIT",
"author": "Ademílson F. Tonato <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/ftonato/plain-object.git"
},
"main": "dist/main.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "jest --no-cache"
},
"engines": {
"node": ">=12"
},
"dependencies": {
"@sindresorhus/is": "^4.6.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.1",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"rollup": "^2.69.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.1.3",
"tslib": "^2.3.1",
"typescript": "^4.6.2"
},
"keywords": [
"object",
"flat",
"flatten",
"plain",
"destruct",
"destructure",
"typescript"
]
}