Files
incre/package.json
Tommy Parnell 9973df7b42 init
2021-05-10 09:14:30 -04:00

25 lines
547 B
JSON

{
"name": "incre",
"version": "0.1.0",
"description": "A lightweight incremental build tool",
"main": "dist/index.js",
"author": "tparnell <tommy@terribledev.io>",
"license": "MIT",
"dependencies": {
"neon-cli": "^0.8.1"
},
"scripts": {
"build": "tsc | neon build",
"build:release": "tsc | neon build --release",
"prestart": "yarn run build",
"start": "node dist/index.js"
},
"bin": {
"incre": "dist/index.js"
},
"devDependencies": {
"@types/node": "^15.0.2",
"typescript": "^4.2.4"
}
}