-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.32 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
{
"author": "webstrand <webstrand@gmail.com>",
"bugs": "https://github.com/webstrand/audience/issues",
"description": "A library which provides a minimal, type-safe, and composable event system",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/sinon": "^9.0.9",
"@types/sinon-chai": "^3.2.5",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"chai": "^4.2.0",
"eslint": "^7.14.0",
"mocha": "^8.2.1",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"sinon-chai": "^3.5.0",
"source-map-support": "^0.5.19",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"homepage": "https://github.com/webstrand/audience",
"keywords": [
"typescript",
"emit",
"event"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/es6/index.js",
"name": "@webstrand/audience",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/webstrand/audience.git"
},
"scripts": {
"build": "tsc -p ./tsconfig.cjs.json && tsc -p ./tsconfig.esm.json",
"coverage": "nyc mocha",
"coverage:watch": "nyc mocha --watch",
"lint": "eslint .",
"test": "mocha",
"test:watch": "mocha --watch",
"watch": "tsc -w"
},
"sideEffects": false,
"typings": "dist/index.d.ts",
"version": "0.1.0"
}