-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.11 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.11 KB
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
{
"name": "select-when",
"version": "0.1.9",
"description": "nodejs library to create expressions that pattern match over an event stream",
"repository": {
"type": "git",
"url": "git+https://github.com/Picolab/select-when.git"
},
"keywords": [
"event",
"event-sourcing",
"krl",
"pico",
"actor",
"microservice",
"pattern-matching"
],
"author": "Picolab",
"license": "MIT",
"bugs": {
"url": "https://github.com/Picolab/select-when/issues"
},
"homepage": "https://github.com/Picolab/select-when#readme",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "rm -rf dist && tsc",
"test": "ava reset-cache && ava"
},
"devDependencies": {
"@types/lodash": "^4.14.136",
"ava": "^5.3.1",
"ts-node": "^10.4.0",
"typescript": "^5.2.2"
},
"dependencies": {
"lodash": "^4.17.11"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"test/**/*",
"!test/helpers/**/*"
]
}
}