-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.18 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.18 KB
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
50
51
52
53
54
55
56
57
58
{
"name": "connexionjs",
"description": "Event emitter library",
"version": "0.7.1",
"license": "MIT",
"author": "Constantine Genchevsky <const.gen@gmail.com>",
"main": "src/index.js",
"browser": "dist/connexion.js",
"repository": {
"type": "git",
"url": "https://github.com/constgen/connexionjs.git"
},
"keywords": [
"connexion",
"connection",
"event",
"emitter",
"cross-frame",
"cross-origin",
"messaging",
"publisher",
"subscriber"
],
"dependencies": {
"es6-collections": "0.5.6",
"cross-channel": "~0.6.2"
},
"devDependencies": {
"grunt": "1.0.1",
"grunt-contrib-jshint": "1.0.0",
"grunt-contrib-watch": "1.0.0",
"grunt-jsdoc": "1.0.0",
"jasmine-core": "*",
"grunt-contrib-jasmine": "1.0.3",
"grunt-contrib-clean": "1.0.0",
"systemjs": "*",
"systemjs-plugin-json": "0.1.0",
"grunt-systemjs-bundler": "git://github.com/constgen/grunt-systemjs-bundler#0.5.0"
},
"scripts": {
"test": "grunt test",
"start": "node src/index.js",
"build": "grunt build",
"code": "grunt code",
"live": "grunt live"
},
"engines": {
"node": ">=0.10.0",
"npm": ">=3.0.0"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"package.json"
]
}