package.json (841B)
1 { 2 "name": "confini", 3 "version": "0.0.7", 4 "description": "Merge all ini configuration files from a folder", 5 "main": "dist/index.js", 6 "scripts": { 7 "test": "mocha -r ts-node/register tests/*.ts", 8 "build": "tsc -d --outDir dist/", 9 "prepare": "npm run build" 10 }, 11 "repository": { 12 "type": "git", 13 "url": "git+https://gitlab.com/nolash/confini-js.git" 14 }, 15 "keywords": [ 16 "ini", 17 "configuration" 18 ], 19 "author": "Louis Holbrook", 20 "license": "GPL-3.0-or-later", 21 "bugs": { 22 "url": "https://gitlab.com/nolash/confini-js/issues" 23 }, 24 "homepage": "https://gitlab.com/nolash/confini-js#readme", 25 "dependencies": { 26 "@types/node": "^14.14.7", 27 "ini": "^1.3.5" 28 }, 29 "devDependencies": { 30 "@types/mocha": "^8.0.4", 31 "mocha": "^8.2.1", 32 "ts-node": "^9.0.0", 33 "typescript": "^4.0.5" 34 } 35 }