-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.29 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "signal-event",
"version": "1.0.2",
"description": "A 700 byte zero dependency single instance of an event emitter. 🎉",
"main": "signal.js",
"repository": "git@github.com:nitish24p/signal.git",
"author": "Nitish Phanse <nitsums@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nitish24p/signal/issues"
},
"scripts": {
"test": "node_modules/.bin/ava tests/**/*.test.js --verbose",
"cover": "node_modules/.bin/nyc yarn test",
"check-coverage": "node_modules/.bin/nyc check-coverage --lines 93 --functions 100 --branches 85 --statements 94",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls",
"minify": "uglifyjs signal.js --source-map \"filename=signal.min.js.map\" -m -c -o signal.min.js && echo 'Minified size' && cat signal.min.js | gzip -9f | wc -c"
},
"devDependencies": {
"ava": "^0.25.0",
"coveralls": "^3.0.2",
"babel-register": "^6.26.0",
"nyc": "^12.0.2",
"uglify-es": "^3.3.9",
"uglify-js": "3.4.5"
},
"ava": {
"require": [
"babel-register"
]
},
"keywords": [
"event emitter",
"singleton",
"pubsub",
"micro front end",
"communication",
"listeners"
],
"nyc": {
"reporter": [
"lcov",
"text",
"html"
]
}
}