CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json31 linesDownload Raw Back to dlv
1{2  "name": "dlv",3  "version": "1.1.3",4  "description": "Safely get a dot-notated property within an object.",5  "main": "dist/dlv.js",6  "browser": "dist/dlv.umd.js",7  "module": "dist/dlv.es.js",8  "scripts": {9    "dev": "microbundle watch",10    "build": "microbundle",11    "prepublish": "npm run build",12    "test": "node test",13    "release": "npm run build && npm test && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish"14  },15  "keywords": [16    "delve",17    "dot notation",18    "dot"19  ],20  "files": [21    "index.js",22    "dist"23  ],24  "author": "Jason Miller <jason@developit.ca> (http://jasonformat.com)",25  "repository": "developit/dlv",26  "license": "MIT",27  "devDependencies": {28    "microbundle": "^0.11.0"29  }30}31 
basant307/AI_Governance_Project · CoolFace