-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
41 lines (41 loc) · 896 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
37
38
39
40
41
{
"name": "minivents",
"version": "2.2.1",
"description": "Tiny eventing for javascript",
"main": "dist/minivents.commonjs.js",
"types": "./types/minievents.d.ts",
"browser": "dist/minivents.commonjs.min.js",
"scripts": {
"test": "gulp test",
"build": "gulp"
},
"repository": {
"type": "git",
"url": "git://github.com/allouis/minivents.git"
},
"keywords": [
"events",
"minivents",
"tiny",
"event",
"emitter",
"eventemitter"
],
"author": {
"name": "Fabien O'Carroll - allouis"
},
"devDependencies": {
"assert": "^1.1.1",
"gulp": "~3.6.2",
"gulp-jshint": "^1.6.2",
"gulp-mocha": "^0.4.1",
"gulp-uglify": "~0.3.0",
"gulp-rename": "~1.2.0",
"gulp-define-module": "~0.1.3",
"lazypipe": "~1.0.1"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/allouis/minivents/issues"
}
}