-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.04 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
{
"name": "@appliedblockchain/assert-combinators",
"version": "5.7.0",
"description": "Assertion combinators.",
"type": "module",
"main": "./cjs/index.js",
"module": "./mjs/index.js",
"exports": {
".": {
"import": "./mjs/index.js",
"require": "./cjs/index.js"
},
"./*.js": {
"import": "./mjs/*.js",
"require": "./cjs/*.js"
},
"./*": {
"require": "./cjs/*.js"
}
},
"scripts": {
"test": "make test",
"preversion": "make test",
"postversion": "make postversion"
},
"keywords": [],
"author": "Mirek Rusin <[email protected]> (https://github.com/mirek)",
"license": "MIT",
"devDependencies": {
"@appliedblockchain/changelog": "1.2.1",
"@appliedblockchain/eslint-config": "3.1.1",
"@tsconfig/node16": "16.1.1",
"@types/jest": "29.5.11",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"eslint": "8.56.0",
"eslint-plugin-jest": "27.6.3",
"jest": "29.7.0",
"npm-check": "6.0.1",
"typescript": "5.3.3"
}
}