mirror of https://github.com/hyper-tuner/ini.git
41 lines
1009 B
JSON
41 lines
1009 B
JSON
{
|
|
"name": "@hyper-tuner/ini",
|
|
"description": "HyperTuner INI parser",
|
|
"version": "0.7.6",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/hyper-tuner/ini"
|
|
},
|
|
"main": "dist/ini.js",
|
|
"types": "dist/ini.d.ts",
|
|
"bin": {
|
|
"hyper-tuner-ini": "dist/cli.js"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepare": "npm run build",
|
|
"start": "tsc --watch",
|
|
"generate": "npm run build && node test/test.js generate",
|
|
"test": "npm run build && node test/test.js",
|
|
"lint": "tsc && rome ci src",
|
|
"lint:fix": "rome format --write src && rome check --apply src",
|
|
"lint:fix:suggested": "rome check --apply-suggested src"
|
|
},
|
|
"devDependencies": {
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^18.11.13",
|
|
"@types/parsimmon": "^1.10.6",
|
|
"rome": "^11.0.0",
|
|
"typescript": "^4.9.4"
|
|
},
|
|
"dependencies": {
|
|
"@hyper-tuner/types": "^0.4.2",
|
|
"js-yaml": "^4.1.0",
|
|
"parsimmon": "^1.18.1"
|
|
}
|
|
}
|