-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.38 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": "matrix-mock-request",
"version": "2.6.0",
"description": "Testing tool for mocking HTTP request/response pairs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "yarn clean && yarn build:compile && yarn build:types",
"build:types": "tsc -p ./tsconfig.json --emitDeclarationOnly",
"build:compile": "babel -d lib --verbose --extensions \".ts\" src",
"clean": "rimraf lib",
"prepare": "yarn build",
"start": "babel -w src -d lib --source-maps",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "prettier --check ."
},
"repository": {
"type": "git",
"url": "https://github.com/matrix-org/matrix-mock-request"
},
"keywords": [
"mock",
"testing"
],
"author": "matrix.org",
"license": "Apache-2.0",
"files": [
"CHANGES.md",
"lib",
"LICENSE",
"package.json"
],
"dependencies": {
"debug": "^4.3.4",
"expect": "^28.1.0"
},
"devDependencies": {
"@babel/cli": "^7.16.7",
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"@babel/preset-typescript": "^7.16.7",
"prettier": "^2.8.3",
"rimraf": "^3.0.2",
"typescript": "^4.5.4"
}
}