-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
104 lines (104 loc) · 3.79 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
101
102
103
104
{
"name": "event-reduce-js",
"version": "5.2.7",
"description": "javascript implementation of the event-reduce algorithm https://pubkey.github.io/event-reduce/",
"keywords": [
"event-reduce",
"database",
"query",
"mongodb",
"nosql",
"no-sql",
"performance",
"optimization",
"bdd"
],
"license": "MIT",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/pubkey/event-reduce"
},
"exports": {
".": {
"default": {
"types": "./dist/esm/src/index.d.ts",
"import": "./dist/esm/src/index.js",
"default": "./dist/cjs/src/index.es5.js"
}
},
"./truth-table-generator": {
"default": {
"types": "./dist/esm/src/truth-table-generator/index.d.ts",
"import": "./dist/esm/src/truth-table-generator/index.js",
"default": "./dist/cjs/src/truth-table-generator/index.es5.js"
}
},
"./package.json": "./package.json"
},
"main": "./dist/cjs/src/index.es5.js",
"module": "./dist/esm/src/index.js",
"engines": {
"node": ">=16"
},
"types": "./dist/esm/src/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"lint": "tslint --project .",
"lint:fix": "tslint --project . --fix",
"transpile": "tsc -p ./ --module commonjs && echo '# transpile es5 (require) sucess!'",
"transpile:es": "tsc -p ./ --outDir ./dist/esm && echo '{ \"type\": \"module\", \"sideEffects\": false }' > dist/esm/src/package.json && echo '# transpile esm (modules) sucess!'",
"build": "rimraf -r ./dist && npm run transpile && npm run transpile:es",
"dry": "npm pack --dry-run",
"test": "npm run build && mocha ./dist/cjs/test/unit/index.test.js --timeout 40000 --bail",
"dev": "mocha -r tsx/register test/unit/index.test.ts --watch --watch-extensions ts",
"generate-truth-table": "tsx ./src/truth-table-generator/runner.node.ts generate-truth-table && npm run create-bdd",
"test-fuzzing": "tsx ./src/truth-table-generator/runner.node.ts fuzzing",
"create-bdd": "tsx ./src/truth-table-generator/runner.node.ts create-bdd",
"optimize-bdd": "tsx ./src/truth-table-generator/runner.node.ts optimize-bdd",
"iterative-fuzzing": "tsx ./src/truth-table-generator/runner.node.ts iterative-fuzzing",
"fuzzing-parallel": "npm-run-all --parallel iterative-fuzzing:*",
"iterative-fuzzing:1": "npm run iterative-fuzzing",
"iterative-fuzzing:2": "npm run iterative-fuzzing",
"iterative-fuzzing:3": "npm run iterative-fuzzing",
"iterative-fuzzing:4": "npm run iterative-fuzzing",
"iterative-fuzzing:5": "npm run iterative-fuzzing",
"iterative-fuzzing:6": "npm run iterative-fuzzing",
"iterative-fuzzing:7": "npm run iterative-fuzzing",
"iterative-fuzzing:8": "npm run iterative-fuzzing",
"optimize-parallel": "npm-run-all --parallel optimize:*",
"optimize:1": "npm run optimize-bdd",
"optimize:2": "npm run optimize-bdd",
"optimize:3": "npm run optimize-bdd",
"optimize:4": "npm run optimize-bdd",
"optimize:5": "npm run optimize-bdd",
"optimize:6": "npm run optimize-bdd",
"optimize:7": "npm run optimize-bdd",
"optimize:8": "npm run optimize-bdd"
},
"author": "pubkey",
"devDependencies": {
"@types/deep-equal": "1.0.4",
"@types/mocha": "10.0.4",
"@types/node": "20.9.2",
"array-shuffle": "3.0.0",
"assert": "2.1.0",
"async-test-util": "2.2.1",
"child-process-promise": "2.2.1",
"clone": "2.1.2",
"deep-equal": "2.2.3",
"mingo": "6.4.9",
"mocha": "10.2.0",
"npm-run-all": "4.1.5",
"pouchdb-selector-core": "8.0.1",
"read-last-lines": "1.8.0",
"rimraf": "3.0.2",
"tslint": "6.1.3",
"tsx": "4.4.0",
"typescript": "5.2.2"
},
"dependencies": {
"array-push-at-sort-position": "4.0.1",
"binary-decision-diagram": "3.2.0"
}
}