-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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": "bullet-pubsub",
"title": "Bullet",
"description": "A lightweight and simple to use pub-sub library.",
"version": "2.3.0",
"homepage": "https://github.com/munkychop/bullet",
"author": {
"name": "Ivan Hayes",
"url": "http://www.ivanhayes.com"
},
"main": "dist/bullet.js",
"scripts": {
"test": "mocha test/**/*.js",
"lint": "eslint src/bullet.js",
"watch": "gulp",
"start": "npm run test && npm run watch",
"dist": "npm run lint && npm run test && gulp compile"
},
"repository": {
"type": "git",
"url": "git://github.com/munkychop/bullet.git"
},
"keywords": [
"bullet",
"io",
"emit",
"events",
"javascript",
"library",
"pub-sub",
"pubsub",
"communication"
],
"private": false,
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"chai": "^3.0.0",
"eslint": "^4.8.0",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"mocha": "^3.5.3",
"pump": "^1.0.2",
"sinon": "^1.16.1",
"sinon-chai": "^2.8.0"
}
}