-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.72 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
{
"name": "@appliedblockchain/parser-combinators",
"version": "4.3.1",
"description": "Monadic parser combinators.",
"type": "module",
"exports": {
".": {
"bundler": "./index.ts",
"require": "./cjs/index.js",
"default": "./esm/index.js"
},
"./*": {
"bundler": "./*.ts",
"require": "./cjs/*.js",
"default": "./esm/*.js"
}
},
"scripts": {
"test": "eslint . && tsc && NODE_OPTIONS=--experimental-vm-modules jest",
"update": "npm-check --update --save-exact",
"prepack": "tsc && tsc -p tsconfig.cjs.json"
},
"keywords": [
"parser",
"combinator",
"monad",
"functional"
],
"author": "Applied Blockchain",
"license": "MIT",
"devDependencies": {
"@appliedblockchain/eslint-config": "2.6.0",
"@tsconfig/node18": "1.0.1",
"@types/jest": "29.5.0",
"@typescript-eslint/eslint-plugin": "5.58.0",
"@typescript-eslint/parser": "5.58.0",
"eslint": "7.18.0",
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
"npm-check": "6.0.1",
"typescript": "5.0.4"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:@typescript-eslint/recommended",
"@appliedblockchain"
],
"plugins": [
"@typescript-eslint"
],
"rules": {
"no-param-reassign": [
"error",
{
"props": true
}
],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": "error"
}
},
"eslintIgnore": [
"wip/*",
"*.js"
],
"jest": {
"testEnvironment": "node",
"testMatch": [
"<rootDir>/esm/**/*.test.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/wip/"
]
}
}