mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
32 lines
924 B
JSON
Executable file
32 lines
924 B
JSON
Executable file
{
|
|
"name": "#{REPO_NAME}#",
|
|
"version": "0.0.0",
|
|
"description": "#{DESC}#",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#.git"
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"tsc": "npx tsc",
|
|
"build": "npm run tsc",
|
|
"test": "node ./dist/test",
|
|
"enable_short_import_path": "npm run build && npx denoify_enable_short_npm_import_path",
|
|
"clean": "rm -rf node_modules dist"
|
|
},
|
|
"author": "u/#{USER_OR_ORG}#",
|
|
"license": "MIT",
|
|
"files": [
|
|
"/dist/*.{d.ts,js,js.map}",
|
|
"/dist/tools/*.{d.ts,js,js.map}"
|
|
],
|
|
"keywords": [],
|
|
"homepage": "https://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#",
|
|
"devDependencies": {
|
|
"typescript": "^3.9.0",
|
|
"@types/node": "^10.0.0",
|
|
"denoify": "^0.2.0",
|
|
"evt": "^1.6.8"
|
|
}
|
|
}
|