-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "puzzle-warden",
"version": "1.8.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"test": "jest --coverage --silent",
"build": "rm -rf dist && ./node_modules/.bin/tsc",
"test:watch": "jest --coverage --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/puzzle-js/puzzle-warden.git"
},
"homepage": "https://puzzle-js.github.io/puzzle-warden/",
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/chalk": "^2.2.0",
"@types/cookie": "^0.3.2",
"@types/faker": "^4.1.4",
"@types/jest": "^26.0.24",
"@types/ms": "^0.7.31",
"@types/nock": "^10.0.3",
"@types/node": "^12.6.8",
"@types/request": "^2.48.2",
"@types/sinon": "^7.0.13",
"chai": "^4.2.0",
"faker": "^4.1.0",
"jest": "^26.6.3",
"nock": "^10.0.6",
"sinon": "^7.4.2",
"ts-jest": "^26.5.6",
"ts-node": "^8.3.0",
"tslint": "^5.17.0",
"typescript": "^4.9.3"
},
"dependencies": {
"chalk": "^2.4.2",
"cookie": "^0.4.0",
"fast-json-stringify": "^1.15.4",
"fast-url-parser": "^1.1.3",
"ms": "^2.1.2",
"reflect-metadata": "^0.1.13",
"supra-http": "^1.3.3"
}
}