This repository was archived by the owner on Jun 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
73 lines (73 loc) · 2.3 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
{
"name": "loon",
"version": "2.0.0-rc6",
"description": "Enterprise ready spring like framework build on Typescript and Express",
"engines": {
"node": ">=6.0.0"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"express",
"expressjs",
"fastify",
"typescript",
"mvc",
"mvc-framework",
"enterprise",
"nodejs"
],
"repository": {
"url": "https://github.com/loon-project/loon",
"type": "git"
},
"author": "vincent178 <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"prepare": "npm run tsc:release",
"test": "npm run clean && npm run tsc && npm run lint && npm run ava",
"tsc": "tsc",
"tsc:release": "tsc --project tsconfig.compile.json",
"lint": "tslint ./src/*.ts ./test/*.ts",
"mocha": "nyc --reporter=html --reporter=text _mocha --recursive ",
"nyan": "mocha --reporter=nyan --recursive",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release:major": "npm version major && npm publish && git push --follow-tags",
"release:minor": "npm version minor && npm publish && git push --follow-tags",
"release:patch": "npm version patch && npm publish && git push --follow-tags",
"dev:tsc": "./node_modules/.bin/tsc -w -p .",
"test:express": "SERVER=express ava test/**/*.test.js",
"test:fastify": "SERVER=fastify ava test/**/*.test.js",
"ava": "npm run test:express && npm run test:fastify",
"clean": "del 'examples/**/*.js' 'examples/**/*.js.map' 'src/**/*.js' 'src/**/*.js.map' 'test/**/*.js' 'test/**/*.js.map'"
},
"dependencies": {
"@types/express": "^4.16.0",
"@types/glob": "^5.0.35",
"@types/lodash": "^4.14.66",
"@types/node": "^10.5.1",
"fastify-formbody": "2.0.1",
"glob": "^7.1.2",
"lodash": "^4.17.10",
"reflect-metadata": "^0.1.9",
"require-all": "^2.1.0",
"source-map-support": "^0.5.0",
"express": "^4.16.3",
"fastify": "^1.7.0",
"method-override": "^2.3.10",
"body-parser": "^1.18.3"
},
"devDependencies": {
"ava": "1.0.0-beta.6",
"axios": "^0.18.0",
"commander": "^2.16.0",
"coveralls": "^3.0.1",
"debug": "^3.1.0",
"del-cli": "^1.1.0",
"nodemon": "^1.18.2-alpha.1",
"nyc": "^10.3.2",
"ts-node": "^7.0.0",
"tslint": "^4.3.1",
"typescript": "^2.9.2"
}
}