2021-09-26 09:28:35 -07:00
|
|
|
{
|
2022-06-30 15:44:57 -07:00
|
|
|
"name": "@hyper-tuner/ini",
|
|
|
|
"description": "HyperTuner INI parser",
|
2022-10-19 14:11:24 -07:00
|
|
|
"version": "0.6.1",
|
2021-09-26 09:28:35 -07:00
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2022-06-30 15:44:57 -07:00
|
|
|
"url": "https://github.com/hyper-tuner/ini"
|
2021-09-26 09:28:35 -07:00
|
|
|
},
|
|
|
|
"main": "dist/ini.js",
|
|
|
|
"types": "dist/ini.d.ts",
|
2022-10-18 02:52:40 -07:00
|
|
|
"bin": {
|
2022-10-18 02:56:07 -07:00
|
|
|
"hyper-tuner-ini": "dist/cli.js"
|
2022-10-18 02:52:40 -07:00
|
|
|
},
|
2021-09-26 09:28:35 -07:00
|
|
|
"files": [
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"scripts": {
|
|
|
|
"build": "tsc",
|
|
|
|
"prepublishOnly": "npm run build",
|
|
|
|
"start": "tsc --watch",
|
2021-09-26 10:12:17 -07:00
|
|
|
"lint": "tsc && eslint --max-warnings=0 src/**/*.ts src/*.ts",
|
2022-10-18 05:13:52 -07:00
|
|
|
"test": "npm run build && node test/test.js",
|
|
|
|
"generate": "npm run build && node test/test.js generate"
|
2021-09-26 09:28:35 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-09-26 08:20:20 -07:00
|
|
|
"@hyper-tuner/eslint-config": "^0.1.6",
|
2021-11-27 03:44:08 -08:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2022-10-19 12:15:06 -07:00
|
|
|
"@types/node": "^18.11.2",
|
2021-09-26 09:28:35 -07:00
|
|
|
"@types/parsimmon": "^1.10.6",
|
|
|
|
"eslint-plugin-modules-newline": "^0.0.6",
|
2022-09-26 08:20:20 -07:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-09-28 04:15:03 -07:00
|
|
|
"typescript": "^4.8.4"
|
2021-09-26 09:28:35 -07:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-09-26 08:20:20 -07:00
|
|
|
"@hyper-tuner/types": "^0.4.0",
|
2021-09-26 09:28:35 -07:00
|
|
|
"js-yaml": "^4.1.0",
|
2022-01-08 12:27:47 -08:00
|
|
|
"parsimmon": "^1.18.1"
|
2021-09-26 09:28:35 -07:00
|
|
|
}
|
|
|
|
}
|