-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.06 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
{
"name": "@soncodi/ee",
"version": "3.0.3",
"description": "Tiny, typed event emitter utility for Node.js and browsers.",
"private": true,
"author": "Alex Soncodi",
"license": "MIT",
"keywords": [
"event",
"events",
"emitter",
"eventemitter",
"micro",
"tiny",
"nodejs",
"browser",
"typescript"
],
"repository": {
"type": "git",
"url": "https://github.com/soncodi/ee.git"
},
"bugs": {
"url": "https://github.com/soncodi/ee/issues"
},
"homepage": "https://github.com/soncodi/ee#readme",
"scripts": {
"clean": "rm -rf ./build ./coverage ./.nyc_output",
"lint": "tslint -p tsconfig.json",
"test": "tsc && alsatian \"./build/test/**/*.test.js\"",
"coverage": "nyc --reporter=lcov npm run test && nyc report",
"build": "tsc",
"watch": "tsc --watch",
"package": "npm run clean && npm run build && ./package.sh",
"push": "cd ./build/package && npm publish --access=public"
},
"devDependencies": {
"alsatian": "~3.2.1",
"nyc": "~15.0.1",
"typescript": "~3.9.3"
}
}