12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- {
- "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"
- }
- }
|