-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 949 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
{
"name": "callback-registry",
"version": "2.7.2",
"description": "Registry for callbacks",
"main": "./lib/index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && mocha tests/index.js",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kirilpopov/callback-registry.git"
},
"keywords": [
"callbacks",
"registry",
"store",
"dispatcher"
],
"author": "Kiril Popov",
"license": "ISC",
"bugs": {
"url": "https://github.com/kirilpopov/callback-registry/issues"
},
"homepage": "https://github.com/kirilpopov/callback-registry#readme",
"devDependencies": {
"chai": "4.2.0",
"mocha": "^8.2.1",
"typescript": "^3.9.6"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}