tsunamy
Version:
A new typesript framework
44 lines (43 loc) • 1.41 kB
JSON
{
"name": "tsunamy",
"version": "0.0.23",
"description": "A new typesript framework",
"keywords": [
"typescript",
"nodejs",
"nodets",
"framework"
],
"author": "Sandy Cnigniet <sandy.cnigniet@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apokalupsis"
},
"scripts": {
"test-dev": "cd src/core && npm run test",
"start-dev": "cd src/core && npm run build:live",
"install-dev": "cd src/core && npm install",
"build-dev": "rm -rf core/* && cd src/core && npm run build",
"link-init": "npm link",
"link": "cd ../tsunamyExemple/node_modules && npm link tsunamy",
"unlink": "cd ../tsunamyExemple/node_modules && npm unlink tsunamy && cd .. && npm i tsunamy",
"publish-patch": "npm run build-dev && npm --no-git-tag-version version patch && npm publish && git add . && git commit -m 'update patch' && git push ",
"publish-minor": "npm run build-dev && npm version minor && npm publish",
"publish-major": "npm run build-dev && npm version major && npm publish"
},
"devDependencies": {
"@types/jasmine": "^3.3.16",
"@types/node": "^11.13.18",
"jasmine": "^3.3.1",
"jasmine-ts": "^0.3.0",
"nodemon": "^1.19.1",
"reflect-metadata": "^0.1.13",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">= 12.0.0"
}
}