-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "@puzzle-js/module",
"version": "0.0.2",
"description": "",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"check": "./node_modules/.bin/gts check",
"clean": "./node_modules/.bin/gts clean",
"compile": "tsc -p .",
"fix": "./node_modules/.bin/gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"author": "",
"license": "ISC",
"dependencies": {
"fast-json-stringify": "^1.16.1",
"fastify": "^2.11.0",
"fastify-compress": "^2.0.0",
"reflect-metadata": "^0.1.13",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v17.1.0",
"worker-threads-promise": "^1.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/compression": "^1.0.1",
"@types/faker": "^4.1.6",
"@types/jest": "^25.2.3",
"@types/node": "^10.0.3",
"@types/sinon": "^7.5.1",
"chai": "^4.2.0",
"faker": "^4.1.0",
"gts": "^1.1.2",
"jest": "^25.5.4",
"sinon": "^7.5.0",
"ts-jest": "^25.5.1",
"typescript": "~3.7.0"
}
}