-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 842 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 842 Bytes
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
{
"name": "ts-eventemitter",
"version": "0.1.0",
"description": "A thin TypeScript wrapper for EventEmitter which provides with type-safety",
"main": "./dist/ts-eventemitter.js",
"typings": "./dist/ts-eventemitter.d.ts",
"scripts": {
"prepublish": "npm test && cp ./src/ts-eventemitter.js ./dist/ts-eventemitter.js && cp ./src/ts-eventemitter.d.ts ./dist/ts-eventemitter.d.ts",
"test": "tsc && nodeunit test"
},
"keywords": [
"EventEmitter",
"TypeScript"
],
"author": "kimamula <kenji.imamula@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kimamula/ts-eventemitter"
},
"devDependencies": {
"nodeunit": "0.9.1",
"tsd": "0.5.7",
"typescript": "1.8.9"
},
"files": [
"dist/ts-eventemitter.d.ts",
"dist/ts-eventemitter.js"
]
}