@agoric/time 0.3.3-dev-57db88d.0.57db88d → 0.3.3-dev-2362584.0.2362584
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/ava.config.js +10 -0
- package/package.json +3 -8
package/ava.config.js
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
// This file configures AVA for this package. A config file next to each
|
|
2
|
+
// package.json avoids AVA's warning about using a config file from an
|
|
3
|
+
// ancestor directory:
|
|
4
|
+
// https://github.com/avajs/ava/blob/main/lib/cli.js
|
|
5
|
+
import base from '../../ava.config.js';
|
|
6
|
+
|
|
7
|
+
export default {
|
|
8
|
+
...base,
|
|
9
|
+
timeout: '10s',
|
|
10
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agoric/time",
|
|
3
|
-
"version": "0.3.3-dev-
|
|
3
|
+
"version": "0.3.3-dev-2362584.0.2362584",
|
|
4
4
|
"description": "Timestamps, time math, timer service API definition",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"homepage": "https://github.com/Agoric/agoric-sdk#readme",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@agoric/store": "0.9.3-dev-
|
|
34
|
+
"@agoric/store": "0.9.3-dev-2362584.0.2362584",
|
|
35
35
|
"@endo/errors": "^1.3.1",
|
|
36
36
|
"@endo/nat": "^5.2.0",
|
|
37
37
|
"@endo/patterns": "^1.9.1"
|
|
@@ -41,11 +41,6 @@
|
|
|
41
41
|
"@endo/init": "^1.1.13",
|
|
42
42
|
"ava": "^8.0.1"
|
|
43
43
|
},
|
|
44
|
-
"ava": {
|
|
45
|
-
"files": [
|
|
46
|
-
"test/**/*.test.*"
|
|
47
|
-
]
|
|
48
|
-
},
|
|
49
44
|
"files": [
|
|
50
45
|
"*.js",
|
|
51
46
|
"NEWS.md",
|
|
@@ -57,5 +52,5 @@
|
|
|
57
52
|
"typeCoverage": {
|
|
58
53
|
"atLeast": 88.17
|
|
59
54
|
},
|
|
60
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "236258498f84e140b3ebf5a36907c036acdeaaf4"
|
|
61
56
|
}
|