-
Notifications
You must be signed in to change notification settings - Fork 576
/
package.json
100 lines (100 loc) · 2.21 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@realm/integration-tests",
"version": "0.1.0",
"description": "A set of tests that can run in different environments",
"main": "src/index.ts",
"exports": {
".": "./src/index.ts",
"./node": "./src/node/index.ts"
},
"private": true,
"scripts": {
"build": "wireit",
"start": "wireit",
"test": "wireit",
"lint": "wireit",
"coverage": "wireit",
"ci:coverage": "wireit"
},
"wireit": {
"lint": {
"command": "eslint --ext .js,.ts ."
},
"build": {
"command": "tsc --build .",
"dependencies": [
"../../packages/realm:build:ts"
]
},
"start": {
"command": "mocha --watch",
"dependencies": [
"build-dependencies"
],
"env": {
"TSX_TSCONFIG_PATH": "./tsconfig.mocha.json"
}
},
"test": {
"command": "mocha --exit",
"dependencies": [
"build-dependencies"
],
"env": {
"TSX_TSCONFIG_PATH": "./tsconfig.mocha.json"
}
},
"coverage": {
"command": "nyc mocha --exit",
"dependencies": [
"build-dependencies"
],
"env": {
"TSX_TSCONFIG_PATH": "./tsconfig.mocha.json"
}
},
"ci:coverage": {
"command": "nyc --reporter=lcov -- mocha --exit",
"dependencies": [
"build-dependencies"
],
"env": {
"TSX_TSCONFIG_PATH": "./tsconfig.mocha.json"
}
},
"build-dependencies": {
"dependencies": [
"../../packages/realm:build:ts",
"../../packages/realm:build:node",
"../../packages/mocha-reporter:bundle"
]
}
},
"peerDependencies": {
"realm": "*"
},
"devDependencies": {
"@realm/app-importer": "*",
"@realm/mocha-reporter": "*",
"@thi.ng/bench": "^3.1.16",
"@types/chai-as-promised": "^7.1.5",
"@types/jsrsasign": "^10.5.4",
"@types/sinon": "9.0.5",
"@types/sinon-chai": "3.2.12",
"nyc": "^15.1.0",
"platform": "^1.3.6",
"realm": "*"
},
"dependencies": {
"@thi.ng/bench": "^3.4.24",
"chai-as-promised": "^7.1.1",
"jsrsasign": "^11.0.0",
"node-fetch": "^3.3.2",
"sinon": "9.2.4",
"sinon-chai": "3.7.0",
"util": "^0.12.5"
},
"files": [
"/src"
]
}