-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.14 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
{
"name": "nekobasu",
"version": "1.0.0",
"description": "Configurable and type safe event bus that can buffer and reduce events",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"scripts": {
"clean": "rm -rf ./build",
"release_build": "npm run clean && tsc --noEmitOnError --project release.tsconfig.json",
"dev_build": "tsc --watch --pretty --noEmitOnError",
"lint": "tslint --type-check --project tsconfig.json",
"lint_fix": "tslint --fix --type-check --project tsconfig.json",
"test": "ava --verbose",
"dev_test": "ava --watch --verbose"
},
"repository": {
"type": "git",
"url": "https://github.com/OliverUv/nekobasu.git"
},
"keywords": [
"typescript",
"ts",
"eventbus",
"event bus",
"event",
"buffer",
"reduce",
"autocomplete",
"autocompletion",
"auto complete",
"auto completion"
],
"author": "Oliver Uvman <oliver@uvman.se> (http://vvv.uvman.se/)",
"license": "Apache-2.0",
"devDependencies": {
"ava": "^0.18.2",
"tslint": "^5.4.3",
"typescript": "^2.4.1"
},
"dependencies": {
"strongly-typed-events": "^1.0.1"
}
}