forked from lelandmiller/micro-signals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "micro-signals",
"version": "2.1.0",
"description": "A tiny typed messaging system inspired by js-signals that uses ES2015 sets",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/rimraf": "0.0.28",
"@types/tape": "^4.2.30",
"erasmus": "^0.1.0",
"faucet": "0.0.1",
"nyc": "^11.0.3",
"rimraf": "^2.6.1",
"tape": "^4.7.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.0.3"
},
"scripts": {
"lint": "tslint --project ./tsconfig.json",
"test": "yarn lint && nyc tape 'test/*.ts' | faucet && nyc report",
"build": "rimraf lib && tsc -p tsconfig.build.json",
"prepublishOnly": "yarn && yarn test && yarn build",
"postpublish": "echo \"Do not forget to push the version commit and tag! `git push --follow-tags`\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/lelandmiller/micro-signals.git"
},
"keywords": [
"signals",
"signal",
"TypeScript",
"ts",
"typed",
"eventer",
"events",
"event",
"messaging",
"pubsub"
],
"author": "Leland Miller <[email protected]>",
"license": "MIT",
"contributors": [
"Justin Maher <[email protected]>"
],
"bugs": {
"url": "https://github.com/lelandmiller/micro-signals/issues"
},
"homepage": "https://github.com/lelandmiller/micro-signals#readme"
}