-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "es6-event-emitter",
"version": "1.10.2",
"description": "Custom, simple, extendable event/messaging system written in ES6",
"main": "dist/emitter.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JFusco/es6-event-emitter"
},
"author": {
"name": "Joe Fusco",
"email": "[email protected]"
},
"scripts": {
"version": "npm run build && git add .",
"postversion": "git push origin master --tags",
"test": "karma start --single-run --no-auto-watch",
"lint": "eslint --fix --color --debug --ignore-path .eslintignore ./src/*.js",
"build": "npm run lint && babel -d dist/ src/"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.5.0",
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-filelog": "^0.4.1",
"gulp-load-plugins": "^1.5.0",
"gulp-util": "^3.0.8",
"gulp-watch": "^4.3.11",
"isparta-loader": "^2.0.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.0",
"jasmine-core": "^2.8.0",
"karma": "^1.7.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-spec-reporter": "^0.0.31",
"karma-webpack": "^2.0.4",
"minimist": "^1.2.0",
"phantomjs-polyfill": "^0.0.2",
"phantomjs-prebuilt": "^2.1.15",
"run-sequence": "^2.1.0",
"webpack": "^3.5.5"
},
"keywords": [
"event",
"pub/sub",
"publish",
"subscribe",
"observer",
"emitter",
"es2015",
"es6",
"es6 events"
]
}