-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@quenk/tendril",
"version": "0.44.1",
"description": "Actor oriented web framework.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/mocha $(find test -name *_test.ts) --",
"build": "make"
},
"files": [
"lib"
],
"author": "Quenk Technologies Limited <info@quenk.com> (http://quenk.com)",
"license": "Apache-2.0",
"devDependencies": {
"@quenk/assert-async": "0.0.3",
"@quenk/jhr": "^2.6.23",
"@quenk/test": "^2.4.0",
"@types/bluebird": "^3.5.29",
"@types/express": "^4.17.11",
"@types/express-session": "^1.17.3",
"@types/mocha": "^8.2.1",
"@types/morgan": "^1.9.2",
"@types/node": "^14.18.5",
"@types/superagent": "^4.1.4",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"mocha": "^8.3.2",
"superagent": "^5.1.3",
"ts-node": "^8.9.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@quenk/noni": "^1.42.0",
"@quenk/potoo": "^3.1.7-0",
"@types/body-parser": "^1.19.0",
"@types/cookie-parser": "^1.4.2",
"@types/csurf": "^1.9.36",
"cookie-parser": "^1.4.5",
"csurf": "^1.11.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"morgan": "^1.10.0",
"serve-static": "^1.14.1"
}
}