ts-learnings/package.json

36 lines
1001 B
JSON
Raw Normal View History

2019-03-27 08:31:28 +08:00
{
"name": "typescript-learnings",
"version": "0.1.0",
"description": "TypeScript Learning stuffs.",
"main": "/dist/main.js",
"scripts": {
2019-03-27 11:20:25 +08:00
"gulp": "gulp &",
2019-03-27 08:31:28 +08:00
"start": "live-server dist/",
"test": "echo \"Error: no test specified\" && exit 1",
"git-push": "./push.sh"
},
"repository": {
"type": "git",
2019-03-27 11:14:12 +08:00
"url": "git+https://github.com/gnu4cn/ts-learnings.git"
2019-03-27 08:31:28 +08:00
},
"keywords": [
"TypeScript"
],
"author": "Peng Hailin, unisko@gmail.com",
"license": "ISC",
"bugs": {
2019-03-27 11:14:12 +08:00
"url": "https://github.com/gnu4cn/ts-learnings/issues"
2019-03-27 08:31:28 +08:00
},
2019-03-27 11:14:12 +08:00
"homepage": "https://github.com/gnu4cn/ts-learnings#readme",
2019-03-27 08:31:28 +08:00
"devDependencies": {
2019-03-27 16:51:18 +08:00
"@types/reflect-metadata": "^0.1.0",
2019-03-27 11:14:12 +08:00
"gulp": "^4.0.0",
2019-03-27 08:31:28 +08:00
"gulp-sourcemaps": "^2.6.1",
2019-03-27 16:51:18 +08:00
"gulp-typescript": "^5.0.1",
2019-03-27 08:31:28 +08:00
"gulp-uglify": "^3.0.0",
"live-server": "^1.2.0",
2019-03-27 11:14:12 +08:00
"typescript": "^2.6.2"
2019-03-27 16:51:18 +08:00
},
"dependencies": {}
2019-03-27 08:31:28 +08:00
}