mirror of https://github.com/hyper-tuner/ini.git
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
{
|
|
"name": "@hyper-tuner/ini",
|
|
"description": "HyperTuner INI parser",
|
|
"version": "0.7.1",
|
|
"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",
|
|
"lint": "tsc && eslint --max-warnings=0 src/**/*.ts src/*.ts",
|
|
"test": "npm run build && node test/test.js",
|
|
"generate": "npm run build && node test/test.js generate"
|
|
},
|
|
"devDependencies": {
|
|
"@hyper-tuner/eslint-config": "git+https://github.com/hyper-tuner/eslint-config.git",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^18.11.8",
|
|
"@types/parsimmon": "^1.10.6",
|
|
"eslint-plugin-modules-newline": "^0.0.6",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"typescript": "^4.8.4"
|
|
},
|
|
"dependencies": {
|
|
"@hyper-tuner/types": "git+https://github.com/hyper-tuner/types.git",
|
|
"js-yaml": "^4.1.0",
|
|
"parsimmon": "^1.18.1"
|
|
}
|
|
}
|