-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "iwinter",
"version": "1.1.0",
"description": "A restful router -> controller library for node.",
"main": "build/cmjs/index.js",
"module": "build/es6/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:cmjs": "tsc -P tsconfig.json --module commonjs --outDir build/cmjs",
"build:es6": "tsc -P tsconfig.json --module ES6 --outDir build/es6",
"build": "npm run build:cmjs & npm run build:es6",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yvanwangl/iwinter.git"
},
"keywords": [],
"author": "Yvanwang <googolewang@gmail.com> <https://blog.yvanwang.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yvanwangl/iwinter/issues"
},
"homepage": "https://github.com/yvanwangl/iwinter#readme",
"dependencies": {
"@types/koa-router": "^7.0.24",
"@types/node": "^8.0.50",
"@types/reflect-metadata": "0.0.5",
"koa-router": "^7.2.1",
"reflect-metadata": "^0.1.10",
"typescript": "^2.6.1"
},
"devDependencies": {
"ts-node": "^3.3.0"
}
}