-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.28 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-filter",
"version": "1.2.0",
"description": "A package for filtering Node.js events. Your listeners only get executed when the specified predicate is satisfied.",
"main": "dist/index",
"typing": "dist/index",
"scripts": {
"test": "npm run lint && npm run build && mocha -r ts-node/register src/**/*.spec.ts",
"lint:fix": "tslint --fix --config tslint.json --project src",
"lint": "tslint --config tslint.json --project src",
"prebuild": "npm run lint:fix && rimraf ./dist",
"build": "tsc --project src",
"watch:build": "tsc --watch --project src"
},
"author": "Olivia Trewin",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.1",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"rimraf": "^2.6.2",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"tslint-config-standard": "^7.0.0",
"typescript": "^2.9.1"
},
"dependencies": {
"@types/node": "^10.3.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OrionNebula/event-filter.git"
},
"keywords": [
"EventEmitter",
"typescript",
"predicate"
],
"bugs": {
"url": "https://github.com/OrionNebula/event-filter/issues"
},
"homepage": "https://github.com/OrionNebula/event-filter#readme"
}