basant307/AI_Governance_Project
045
1{2 "name": "pathval",3 "description": "Object value retrieval given a string path",4 "homepage": "https://github.com/chaijs/pathval",5 "version": "2.0.1",6 "keywords": [7 "pathval",8 "value retrieval",9 "chai util"10 ],11 "license": "MIT",12 "author": "Veselin Todorov <hi@vesln.com>",13 "files": [14 "index.js"15 ],16 "main": "./index.js",17 "type": "module",18 "repository": {19 "type": "git",20 "url": "git+ssh://git@github.com/chaijs/pathval.git"21 },22 "scripts": {23 "lint": "eslint --ignore-path .gitignore .",24 "lint:fix": "npm run lint -- --fix",25 "semantic-release": "semantic-release pre && npm publish && semantic-release post",26 "pretest": "npm run lint",27 "test": "npm run test:node && npm run test:browser",28 "test:browser": "web-test-runner test/index.js --node-resolve",29 "test:node": "mocha",30 "prepare": "husky"31 },32 "eslintConfig": {33 "extends": [34 "strict/es6"35 ],36 "parserOptions": {37 "sourceType": "module"38 },39 "env": {40 "es6": true41 },42 "globals": {43 "HTMLElement": false44 },45 "rules": {46 "complexity": 0,47 "max-statements": 048 }49 },50 "devDependencies": {51 "@web/test-runner": "^0.17.0",52 "eslint": "^7.13.0",53 "eslint-config-strict": "^14.0.1",54 "eslint-plugin-filenames": "^1.3.2",55 "husky": "^9.1.7",56 "mocha": "^8.2.1",57 "semantic-release": "^17.2.2",58 "simple-assert": "^2.0.0",59 "validate-commit-msg": "^2.14.0"60 },61 "engines": {62 "node": ">= 14.16"63 }64}65 