ini/package.json

37 lines
915 B
JSON

{
"name": "@speedy-tuner/ini",
"description": "SpeedyTuner INI parser",
"version": "0.2.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.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.11.10",
"@types/parsimmon": "^1.10.6",
"eslint-plugin-modules-newline": "^0.0.6",
"eslint-plugin-prettier": "^4.0.0",
"typescript": "^4.5.2"
},
"dependencies": {
"@speedy-tuner/types": "^0.1.1",
"js-yaml": "^4.1.0",
"parsimmon": "^1.18.0"
}
}