-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "object-property-extractor",
"version": "1.0.12",
"description": "A lightweight (no dependencies) tool to extract deeply nested values from JS Objects (or Arrays), with optional Fallback.",
"main": "build/index.cjs.js",
"module": "build/index.esm.js",
"types": "build/index.d.ts",
"files": [
"build/**/*"
],
"repository": "https://github.com/CarlosNZ/object-property-extractor.git",
"author": "Carl Smith <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"test": "jest",
"dev": "ts-node ./src/dev/dev.ts",
"build": "rimraf ./build && rollup -c && rimraf ./build/dts",
"compile": "rimraf ./build && tsc",
"prepublish": "yarn build"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-sizes": "^1.0.6",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
}
}