-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 874 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": "tu-emitter",
"version": "0.0.2",
"description": "Simple typescript event emitter, provides clean utilities to fire and listen to events.",
"keywords": [
"emitter",
"tu-emitter",
"event emitter",
"typescript"
],
"types": "lib/index.d.ts",
"main": "lib/index.js",
"license": "MIT",
"files": [
"css",
"es",
"lib",
"umd"
],
"scripts": {
"add-assets": "copyfiles -u 1 'src/**/!(*.js|*.jsx|*.map|*.ts|*.tsx)' lib/",
"build:ts": "tsc",
"build:all": "yarn build:ts && yarn add-assets",
"prepublishOnly": "yarn build:all",
"prepublish": "yarn build:all"
},
"devDependencies": {
"copyfiles": "^2.1.1",
"typescript": "^3.8.2"
},
"author": {
"name": "Tejas Upmanyu",
"url": "https://twitter.com/tejasupmanyu"
},
"repository": "https://github.com/tejasupmanyu/tu-emitter"
}