-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.14 KB
/
package.json
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "stix",
"version": "4.5.2",
"description": "A module-based, TypeScript-first Node.js® framework.",
"repository": {
"type": "git",
"url": "git+https://github.com/SpoonX/stix.git"
},
"author": "RWOverdijk <r.w.overdijk@gmail.com>",
"main": "./dist/index.js",
"files": [
"dist"
],
"types": "dist/index.d.ts",
"keywords": [
"api",
"framework",
"typescript",
"tsc",
"koa",
"koajs",
"node",
"wetland"
],
"bugs": {
"url": "https://github.com/SpoonX/stix/issues"
},
"homepage": "https://github.com/SpoonX/stix",
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.json",
"dev": "tsc --build -w tsconfig.json",
"prepare": "yarn build",
"version": "conventional-changelog -p angular -i doc/CHANGELOG.md -s && git add -A doc/CHANGELOG.md",
"postpublish": "git push upstream master && git push upstream --tags"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(ts?)$",
"moduleFileExtensions": [
"ts",
"js"
]
},
"devDependencies": {
"@types/jest": "^24.0.19",
"jest": "^24.9.0",
"ts-jest": "^24.1.0",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.0.3"
},
"dependencies": {
"@koa/cors": "^2.2.2",
"@types/bytes": "^3.0.0",
"@types/cli-table": "^0.3.0",
"@types/clone": "^0.1.30",
"@types/command-line-usage": "^5.0.1",
"@types/debug": "^0.0.30",
"@types/koa": "^2.0.46",
"@types/koa-bodyparser": "^5.0.1",
"@types/koa-send": "^4.1.1",
"@types/koa__cors": "^2.2.3",
"@types/node": "^10.9.4",
"@types/prettyjson": "^0.0.28",
"chalk": "^2.4.1",
"cli-table": "^0.3.1",
"clone": "^2.1.2",
"command-line-usage": "^5.0.5",
"debug": "^4.0.1",
"koa": "^2.5.3",
"koa-bodyparser": "^4.2.1",
"koa-send": "^5.0.0",
"path-to-regexp": "^2.4.0",
"pretty-error": "^2.1.1",
"prettyjson": "^1.2.1",
"reflect-metadata": "^0.1.12",
"winston": "^3.1.0",
"yargs-parser": "^10.1.0"
},
"license": "MIT"
}