package.json
1 { 2 "name": "toidentifier", 3 "description": "Convert a string of words to a JavaScript identifier", 4 "version": "1.0.1", 5 "author": "Douglas Christopher Wilson <doug@somethingdoug.com>", 6 "contributors": [ 7 "Douglas Christopher Wilson <doug@somethingdoug.com>", 8 "Nick Baugh <niftylettuce@gmail.com> (http://niftylettuce.com/)" 9 ], 10 "repository": "component/toidentifier", 11 "devDependencies": { 12 "eslint": "7.32.0", 13 "eslint-config-standard": "14.1.1", 14 "eslint-plugin-import": "2.25.3", 15 "eslint-plugin-markdown": "2.2.1", 16 "eslint-plugin-node": "11.1.0", 17 "eslint-plugin-promise": "4.3.1", 18 "eslint-plugin-standard": "4.1.0", 19 "mocha": "9.1.3", 20 "nyc": "15.1.0" 21 }, 22 "engines": { 23 "node": ">=0.6" 24 }, 25 "license": "MIT", 26 "files": [ 27 "HISTORY.md", 28 "LICENSE", 29 "index.js" 30 ], 31 "scripts": { 32 "lint": "eslint .", 33 "test": "mocha --reporter spec --bail --check-leaks test/", 34 "test-ci": "nyc --reporter=lcov --reporter=text npm test", 35 "test-cov": "nyc --reporter=html --reporter=text npm test", 36 "version": "node scripts/version-history.js && git add HISTORY.md" 37 } 38 }