-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.02 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
{
"name": "@ruso/flatten-json",
"version": "0.1.2",
"description": "FlattenJSON is a utility function for flattening JSON objects into a single-level object with keys representing the accessor path to the value",
"keywords": [
"common",
"tools",
"utils"
],
"author": {
"name": "Ruslan Gonzalez",
"email": "[email protected]"
},
"homepage": "https://github.com/ruslanguns/ruso-monorepo/tree/master/packages/flatten-json",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ruslanguns/ruso-monorepo.git"
},
"bugs": {
"url": "https://github.com/ruslanguns/ruso-monorepo/issues"
},
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"postbuild": "sh postbuild.sh",
"lint": "eslint --ext .ts ./src/",
"test": "jest"
},
"gitHead": "3412d6deb0dd6a3fcf6b5f7f7f5f87bed87d69a7"
}