@ranchonyx/ini-parser
Version:
A simple, relatively lightweight ini parser
34 lines • 1.2 kB
JSON
{
"name": "@ranchonyx/ini-parser",
"version": "1.1.2",
"description": "A simple, relatively lightweight ini parser",
"main": "dist/index.js",
"devDependencies": {},
"scripts": {
"compile": "tsc",
"clean:win": "node -e \"if (process.platform === 'win32') process.exit(1)\" || , if exist dist del dist\\* /S /Q",
"clean:lin": "node -e \"if (process.platform !== 'win32') process.exit(1)\" || rm -rf dist/*",
"clean": "npm run clean:win && npm run clean:lin",
"build": "npm run clean && npm run compile",
"commit": "npm run build && git commit -a -m BUILD_%time%_%date%",
"pub:git": "git push",
"pub:npm": "npm publish --access public",
"pub:full": "npm run pub:git && npm run pub:npm"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ranchonyx/ini-parser.git"
},
"keywords": [
"INI",
"ini",
"parser",
"config"
],
"author": "Felix Janetzki",
"license": "MIT",
"bugs": {
"url": "https://github.com/ranchonyx/ini-parser/issues"
},
"homepage": "https://github.com/ranchonyx/ini-parser#readme"
}