-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.01 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
{
"name": "@aex/core",
"version": "0.21.0",
"description": "aex",
"license": "MIT",
"repository": "calidion/aex",
"author": {
"name": "calidion",
"email": "calidion@gmail.com",
"url": "https://calidion.github.io"
},
"keywords": [
""
],
"files": [
"lib"
],
"main": "lib/index",
"types": "lib/index",
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"format": "prettier --write \"{src,__tests__}/**/*.ts\" --trailing-comma es5",
"lint": "tslint --fix --force --format verbose \"src/**/*.ts\"",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version",
"build": "tsc --pretty",
"test": "DEBUG=* npm run build && jest --coverage",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"@aex/session": "^0.2.0",
"@types/body-parser": "^1.19.2",
"@types/busboy": "^0.2.3",
"@types/finalhandler": "^1.1.0",
"@types/mime-types": "^2.1.0",
"@types/node": "^14.14.22",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.0",
"body-parser": "^1.19.0",
"busboy": "^0.3.1",
"debug": "^4.3.1",
"errorable": "^0.6.0",
"mime-types": "^2.1.31",
"node-form-validator": "^1.5.2",
"path-to-regexp": "^8.0.0",
"uuid": "^8.3.2",
"ws": "^7.4.2"
},
"devDependencies": {
"@types/cors": "^2.8.9",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.20",
"@types/nunjucks": "^3.2.1",
"@types/pug": "^2.0.6",
"@types/request": "^2.48.5",
"@types/supertest": "^2.0.10",
"cors": "^2.8.5",
"coveralls": "^3.1.0",
"jest": "^26.6.3",
"nunjucks": "^3.2.3",
"prettier": "^2.2.1",
"pug": "^3.0.2",
"rimraf": "^3.0.2",
"supertest": "^6.1.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3"
},
"jest": {
"preset": "ts-jest"
}
}