-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "eventist",
"version": "1.0.0",
"description": "Event emitter for modular designs",
"main": "lib/eventist.js",
"engines": {
"node": ">= 0.10.33"
},
"repository": {
"type": "git",
"url": "git://github.com/valango/eventist.git"
},
"scripts": {
"preversion": "npm test",
"version": "gulp build && git add -A lib",
"postversion": "git push && git push --tags && npm publish",
"test": "./node_modules/.bin/karma start --direct --single-run --browsers PhantomJS"
},
"keywords": [
"bus",
"event",
"emitter",
"extendable",
"simple"
],
"author": {
"name": "Villem Alango",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"eslint": "^2.11.1",
"gulp": "^3.9.1",
"gulp-eslint": "^2.0.0",
"gulp-jasmine": "^2.3.0",
"gulp-jsx-coverage": "^0.3.8",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.5.3",
"istanbul": "^0.4.3",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-coverage": "^0.5.5",
"karma-firefox-launcher": "^0.1.7",
"karma-jasmine": "^0.3.8",
"karma-phantomjs-launcher": "^1.0.0",
"karma-requirejs": "^0.2.6",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.7",
"requirejs": "^2.2.0"
}
}