This commit is contained in:
Tommy Parnell
2021-05-10 09:14:30 -04:00
commit 9973df7b42
12 changed files with 1215 additions and 0 deletions

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"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"
}
}