-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.88 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
{
"name": "mr-eventemitter",
"version": "0.1.4",
"description": "Provides ability to subscribe and emit events in sync manner. With focus on performance and memory efficiency.",
"type": "module",
"main": "src/index.js",
"browser": "dist/mr-eventemitter.es5.min.js",
"module": "dist/mr-eventemitter.min.js",
"scripts": {
"babel:es5": "babel --config-file ./other/babel-es5.config.json --out-file ./dist/mr-eventemitter.es5.min.js ./src/index.js",
"babel": "babel --config-file ./other/babel.config.json --out-file ./dist/mr-eventemitter.min.js ./src/index.js",
"terser:es5": "terser --compress --mangle --output ./dist/mr-eventemitter.es5.min.js -- ./dist/mr-eventemitter.es5.min.js",
"terser": "terser --compress --mangle --output ./dist/mr-eventemitter.min.js -- ./dist/mr-eventemitter.min.js",
"docs": "jsdoc2md --partial ./other/tmpl/*.hbs --files ./src/index.js > ./API.md",
"build": "npm run babel:es5 && npm run babel && npm run terser:es5 && npm run terser && npm run docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Maksims/mr-EventEmitter.git"
},
"keywords": [
"events",
"eventemitter"
],
"author": {
"name": "Maksims Mihejevs",
"email": "core@moka.co",
"url": "https://twitter.com/mrmaxm"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Maksims"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Maksims/mr-EventEmitter/issues"
},
"homepage": "https://github.com/Maksims/mr-EventEmitter#readme",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"babel-plugin-remove-import-export": "^1.1.1",
"jsdoc-to-markdown": "^6.0.1",
"terser": "^5.5.1"
}
}