package.json
1 { 2 "name": "path-key", 3 "version": "2.0.1", 4 "description": "Get the PATH environment variable key cross-platform", 5 "license": "MIT", 6 "repository": "sindresorhus/path-key", 7 "author": { 8 "name": "Sindre Sorhus", 9 "email": "sindresorhus@gmail.com", 10 "url": "sindresorhus.com" 11 }, 12 "engines": { 13 "node": ">=4" 14 }, 15 "scripts": { 16 "test": "xo && ava" 17 }, 18 "files": [ 19 "index.js" 20 ], 21 "keywords": [ 22 "path", 23 "key", 24 "environment", 25 "env", 26 "variable", 27 "var", 28 "get", 29 "cross-platform", 30 "windows" 31 ], 32 "devDependencies": { 33 "ava": "*", 34 "xo": "*" 35 }, 36 "xo": { 37 "esnext": true 38 } 39 }