mirror of https://github.com/hyper-tuner/ini.git
37 lines
914 B
JSON
37 lines
914 B
JSON
{
|
|
"name": "@speedy-tuner/ini",
|
|
"description": "SpeedyTuner INI parser",
|
|
"version": "0.3.0",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/speedy-tuner/ini"
|
|
},
|
|
"main": "dist/ini.js",
|
|
"types": "dist/ini.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"prepublishOnly": "npm run build",
|
|
"start": "tsc --watch",
|
|
"lint": "tsc && eslint --max-warnings=0 src/**/*.ts src/*.ts",
|
|
"test": "npm run build && node test/test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@speedy-tuner/eslint-config": "^0.1.2",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "^17.0.23",
|
|
"@types/parsimmon": "^1.10.6",
|
|
"eslint-plugin-modules-newline": "^0.0.6",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"typescript": "^4.6.3"
|
|
},
|
|
"dependencies": {
|
|
"@speedy-tuner/types": "^0.3.0",
|
|
"js-yaml": "^4.1.0",
|
|
"parsimmon": "^1.18.1"
|
|
}
|
|
}
|