-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 965 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
{
"name": "event-abstract-class",
"version": "1.0.6",
"description": "ES6 abstract class to extend and allow classes to support native object event binding/triggering.",
"main": "dist/event-abstract-class.js",
"repository": {
"type": "git",
"url": "git://github.com/NZME/event-abstract-class"
},
"scripts": {
"compile": "node node_modules/babel-cli/bin/babel.js --presets es2015,stage-0 -d dist/ src/",
"prepublish": "npm run compile",
"test": "echo 'ok'"
},
"keywords": [
"js",
"es6",
"abstract",
"class",
"events",
"trigger",
"emit",
"bind"
],
"contributors": [
"Raice Hannay <raicehannay@gmail.com> (http://github.com/voodoocreation)"
],
"bugs": {
"url": "https://github.com/NZME/event-abstract-class/issues"
},
"devDependencies": {
"babel-cli": "^6.1.18",
"babel-core": "^6.1.18",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18"
}
}