-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.24 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
{
"name": "event-emitter-tree",
"version": "1.0.2",
"main": "dist/event-emitter-tree.js",
"repository": "https://github.com/pomelott/event-core.git",
"homepage": "https://github.com/pomelott/event-core#readme",
"author": "pomelott <[email protected]>",
"typings": "types/index.d.ts",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.166",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=12.18.4"
},
"keywords": [
"eventEmitter",
"eventEmitterTree",
"eventCore",
"eventTree",
"event",
"tree",
"pipe"
],
"scripts": {
"build": "npx rollup -c",
"test": "npx jest --clearCache && npx jest test/index.test.ts --detectOpenHandles",
"test:unit": "npx jest --clearCache && npx jest test/index.test.ts --detectOpenHandles --type=unit",
"test:e2e": "npx jest --clearCache && npx jest test/index.test.ts --detectOpenHandles --type=e2e"
},
"dependencies": {
"lodash": "^4.17.20"
}
}