-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "msngr",
"main": "msngr.js",
"description": "An asynchronous messaging library, written in JavaScript, for node and browser use",
"version": "7.0.0",
"keywords": [
"message",
"messaging",
"delegation",
"eventing",
"dom",
"binding",
"pub",
"sub",
"pubsub",
"publish",
"subscription",
"subscribe",
"pubsub"
],
"repository": {
"type": "git",
"url": "https://github.com/KrisSiegel/msngr.js.git"
},
"license": "MIT",
"homepage": "http://www.msngrjs.com/",
"author": {
"name": "Kris Siegel",
"url": "http://www.KrisSiegel.com/"
},
"devDependencies": {
"async": "2.4.1",
"chai": "4.0.2",
"grunt": "1.0.2",
"grunt-available-tasks": "0.6.3",
"grunt-contrib-clean": "1.1.0",
"grunt-contrib-concat": "1.0.1",
"grunt-contrib-uglify": "3.0.1",
"grunt-mocha-phantomjs": "4.0.0",
"grunt-mocha-test": "0.13.2",
"mocha": "3.4.2"
},
"scripts": {
"test": "node -e \"var g = require('grunt'); g.cli.tasks = ['test']; g.cli();\"",
"build": "node -e \"var g = require('grunt'); g.cli.tasks = ['build']; g.cli();\"",
"clean": "node -e \"var g = require('grunt'); g.cli.tasks = ['clean']; g.cli();\""
}
}