-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1009 Bytes
/
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": "newsemitter",
"description": "An event emitter that emits only new events.",
"keywords": [
"event",
"emitter",
"event emitter",
"publish",
"subscribe",
"pubsub"
],
"version": "1.0.2",
"repository": {
"type": "git",
"url": "git://github.com/fent/node-newsemitter.git"
},
"author": "fent <[email protected]> (https://github.com/fent)",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"prepare": "tsc -p tsconfig.build.json",
"build": "tsc -p tsconfig.build.json",
"test": "nyc --extension .ts --reporter=lcov --reporter=text-summary npm run test:unit",
"test:unit": "mocha --require ts-node/register test/*-test.ts"
},
"directories": {
"lib": "./lib"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.11",
"mocha": "^6.0.0",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.2"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}