-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 922 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
{
"name": "jetemit",
"version": "7.0.3",
"description": "events manager",
"main": "index.js",
"scripts": {
"test": "node ./index.test.js",
"build": "babel src -d ./",
"types": "npx -p typescript tsc src/index.js --declaration --allowJs --emitDeclarationOnly --outDir types",
"preversion": "npm run build && npm run test",
"postversion": "git push && git push --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behnammodi/jetemit.git"
},
"author": "Behnam Mohammadi",
"license": "ISC",
"bugs": {
"url": "https://github.com/behnammodi/jetemit/issues"
},
"homepage": "https://github.com/behnammodi/jetemit#readme",
"keywords": [
"event",
"events manager"
],
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"babel-preset-minify": "^0.5.1"
}
}