basant307/AI_Governance_Project
048
1{2 "name": "normalize-range",3 "version": "0.1.2",4 "description": "Utility for normalizing a numeric range, with a wrapping function useful for polar coordinates",5 "license": "MIT",6 "repository": "jamestalmage/normalize-range",7 "author": {8 "name": "James Talmage",9 "email": "james@talmage.io",10 "url": "github.com/jamestalmage"11 },12 "engines": {13 "node": ">=0.10.0"14 },15 "scripts": {16 "test": "npm run cover && npm run lint && npm run style",17 "cover": "istanbul cover ./node_modules/.bin/_mocha",18 "lint": "jshint --reporter=node_modules/jshint-stylish *.js test/*.js",19 "debug": "mocha",20 "watch": "mocha -w",21 "style": "jscs *.js ./**/*.js && jscs ./test/** --config=./test/.jscsrc"22 },23 "files": [24 "index.js"25 ],26 "keywords": [27 "range",28 "normalize",29 "utility",30 "angle",31 "degrees",32 "polar"33 ],34 "dependencies": {},35 "devDependencies": {36 "almost-equal": "^1.0.0",37 "codeclimate-test-reporter": "^0.1.0",38 "coveralls": "^2.11.2",39 "istanbul": "^0.3.17",40 "jscs": "^2.1.1",41 "jshint": "^2.8.0",42 "jshint-stylish": "^2.0.1",43 "mocha": "^2.2.5",44 "stringify-pi": "0.0.3"45 }46}47 