ini/package.json

37 lines
908 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-06-30 15:45:07 -07:00
"version": "0.3.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",
"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",
2021-09-26 11:09:06 -07:00
"test": "npm run build && node test/test.js"
2021-09-26 09:28:35 -07:00
},
"devDependencies": {
2022-06-30 15:44:57 -07:00
"@hyper-tuner/eslint-config": "^0.1.2",
"@types/js-yaml": "^4.0.5",
"@types/node": "^18.0.6",
2021-09-26 09:28:35 -07:00
"@types/parsimmon": "^1.10.6",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.6.3"
2021-09-26 09:28:35 -07:00
},
"dependencies": {
2022-06-30 15:44:57 -07:00
"@hyper-tuner/types": "^0.3.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
}
}