This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
95 lines (95 loc) · 2.49 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
86
87
88
89
90
91
92
93
94
95
{
"name": "vig",
"version": "1.0.0-rc-2",
"description": "a component based web framework, focus on web basic logics",
"license": "MIT",
"repository": "calidion/vig",
"author": {
"name": "calidion",
"email": "[email protected]",
"url": ""
},
"files": [
"lib"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"keywords": [
"nodejs",
"express",
"vig"
],
"scripts": {
"clean": "rimraf lib",
"lint": "tslint --force --format verbose \"src/**/*.ts\"",
"prebuild": "rimraf node_modules && yarn install",
"build": "npm run clean && npm run lint && echo Using TypeScript && tsc --version && tsc --pretty",
"test": "npm run build && nyc --reporter=text --reporter=html --reporter=lcov mocha --bail --compilers ts:ts-node/register --recursive 'test/**/*.test.ts'",
"coverage": "nyc --include='src/**/*.ts' --reporter=text --reporter=html --reporter=lcov mocha --bail --compilers ts:ts-node/register --recursive 'test/**/*.test.ts'",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"postinstall": "opencollective-postinstall"
},
"dependencies": {
"async": "^3.1.0",
"body-parser": "^1.18.1",
"cookie-parser": "^1.4.3",
"errorable": "^0.4.0",
"errorable-common": "^0.1.0",
"errorable-express": "0.0.4",
"file-cloud-uploader": "^0.0.6",
"lodash": "^4.17.15",
"node-form-validator": "^1.5.2",
"nunjucks": "^3.0.1",
"skipper": "^0.8.2",
"waterline": "^0.11.11",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/chai": "^4.0.4",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.28",
"chai": "^4.1.2",
"codecov": "^3.7.1",
"connect": "^3.6.4",
"coveralls": "^2.13.1",
"errorable-common": "^0.1.0",
"express": "^4.15.4",
"express-session": "^1.15.5",
"mocha": "^3.5.3",
"nyc": "^11.2.1",
"opencollective": "^1.0.3",
"opencollective-postinstall": "^2.0.2",
"restify": "^6.0.1",
"rimraf": "^2.6.2",
"sails-memory": "^0.10.7",
"supertest": "^3.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.5.2",
"yarn": "^1.21.0"
},
"engines": {
"node": ">=4.0.0"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"lib"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [],
"all": true
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/vig"
}
}