#
whycq
2024-03-30 9ab6b38c098f857f2ce0772693142c930e4f9b6d
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
{
  "name": "shvl",
  "version": "2.0.3",
  "description": "Get and set dot-notated properties within an object",
  "license": "MIT",
  "author": "Robin van der Vleuten <robin@webstronauts.co>",
  "source": "index.js",
  "main": "dist/shvl.js",
  "module": "dist/shvl.mjs",
  "unpkg": "dist/shvl.umd.js",
  "typings": "index.d.ts",
  "keywords": [
    "path",
    "dot notation",
    "dot"
  ],
  "files": [
    "dist",
    "index.d.ts",
    "index.js"
  ],
  "scripts": {
    "build": "microbundle",
    "prepare": "run-s build",
    "test": "run-p test:**",
    "test:jest": "jest --env=jsdom",
    "test:size": "bundlesize"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/robinvdvleuten/shvl.git"
  },
  "bugs": {
    "url": "https://github.com/robinvdvleuten/shvl/issues"
  },
  "homepage": "https://github.com/robinvdvleuten/shvl#readme",
  "bundlesize": [
    {
      "path": "./dist/*.js",
      "threshold": "300b"
    }
  ],
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "devDependencies": {
    "@babel/core": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "babel-jest": "^26.2.2",
    "bundlesize": "^0.18.0",
    "jest": "^26.5.3",
    "jest-in-case": "^1.0.2",
    "microbundle": "^0.13.0",
    "npm-run-all": "^4.1.2"
  }
}