logicsimulator/package.json

34 lines
839 B
JSON
Raw Normal View History

{
"name": "logicsimulator",
"version": "1.0.0",
"description": "CMOS/TTL Logic Simulator",
"author": "Sascha Nitsch (grumpydeveloper)",
"license": "GPL-3.0-or-later",
"private": true,
"devDependencies": {
"@types/node": "latest",
"grunt": "latest",
"grunt-cli": "latest",
"grunt-contrib-less": "latest",
"grunt-contrib-uglify": "latest",
"grunt-contrib-watch": "latest",
"grunt-newer": "latest",
"grunt-svgmin": "latest",
"grunt-ts": "latest",
"gts": "latest",
"ts-loader": "latest",
"typescript": "latest",
"uglify-js": "latest"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run lint",
"build": "webpack"
}
}