-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 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
{
"author": "Dr. Kibitz <[email protected]>",
"bugs": "https://github.com/drkibitz/qi-events/issues",
"contributors": "Jeremy Ashkenas <[email protected]>",
"devDependencies": {
"coveralls": "*",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"gulp-uglify": "^2.1.0",
"ink-docstrap": "^1.3.0",
"istanbul": "*",
"jsdoc": "^3.4.3",
"jshint": "*",
"jshint-stylish": "^2.2.1",
"map-stream": "0.0.6",
"mocha": "*"
},
"description": "A no nonsense event API (BASED ON Backbone.Events).",
"files": [
"index.js"
],
"homepage": "http://drkibitz.github.io/qi-events/",
"keywords": [
"qi",
"event",
"events",
"trigger"
],
"license": "MIT",
"name": "qi-events",
"repository": "https://github.com/drkibitz/qi-events",
"scripts": {
"jshint": "gulp jshint",
"test": "istanbul cover _mocha --require './test/source' test/**/*.test.js",
"coveralls": "cat ./build/coverage/lcov.info | coveralls",
"test-dist": "gulp && mocha --globals --require './test/dist' test/**/*.test.js",
"docs": "jsdoc -c jsdoc.conf.json && git checkout gh-pages && rm -fR ./api && mkdir ./api && mv ./docs/*/* ./api/latest && rm -fR ./docs"
},
"version": "1.0.2"
}