25 lines
547 B
JSON
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"
|
|
}
|
|
}
|