ini/package.json

41 lines
1022 B
JSON
Raw Normal View History

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-23 06:20:45 -07:00
"version": "0.6.3",
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",
2022-10-23 06:20:23 -07:00
"postinstall": "npm run build",
2021-09-26 09:28:35 -07:00
"start": "tsc --watch",
2021-09-26 10:12:17 -07:00
"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"
2021-09-26 09:28:35 -07:00
},
"devDependencies": {
2022-09-26 08:20:20 -07:00
"@hyper-tuner/eslint-config": "^0.1.6",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.11.3",
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",
"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
}
}