-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.25 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
{
"name": "birbs",
"version": "0.9.1",
"description": "Fly your application with an event-driven model inside rich contexts!",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/src",
"lib/index*",
".eslintrc"
],
"scripts": {
"test": "mocha",
"compile": "tsc",
"lint": "eslint --max-warnings 0 './*{(test),(src)}/*.{ts,js}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flgmjr/birbs.git"
},
"mocha": {
"require": [
"ts-node/register"
],
"timeout": 0,
"spec": "./test/*.ts",
"recursive": true
},
"keywords": [
"birbs",
"event",
"events",
"encapsulation",
"framework",
"manager",
"birb",
"context",
"domain"
],
"author": "flgmjr",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/flgmjr/birbs/issues"
},
"homepage": "https://github.com/flgmjr/birbs#readme",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.35",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"mocha": "^6.2.3",
"ts-node": "^8.8.2",
"typescript": "^3.8.3"
}
}