-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.31 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
{
"name": "listener-tracker",
"description": "Allows event listeners to be tracked for easy removal",
"keywords": [
"events",
"listeners",
"EventEmitter"
],
"repository": {
"type": "git",
"url": "https://github.com/patrick-steele-idem/listener-tracker.git"
},
"scripts": {
"test": "npm run test-server && npm run test-client && jshint lib/",
"test-server": "mocha --ui bdd --reporter spec ./test",
"test-client": "node_modules/karma/bin/karma start"
},
"author": "Patrick Steele-Idem <[email protected]>",
"maintainers": [
"Patrick Steele-Idem <[email protected]>",
"Phil Gates-Idem <[email protected]>"
],
"devDependencies": {
"browserify": "^13.0.1",
"chai": "^1.10.0",
"jshint": "^2.5.0",
"karma": "^0.13.22",
"karma-browserify": "^5.0.5",
"karma-chai": "^0.1.0",
"karma-lasso": "^2.0.0",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-phantomjs-launcher": "^1.0.0",
"lasso": "^2.5.3",
"lasso-require": "^1.8.0",
"mocha": "^2.1.0",
"phantomjs-prebuilt": "^2.1.7",
"watchify": "^3.7.0"
},
"license": "Apache-2.0",
"main": "lib/listener-tracker.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"version": "2.0.0",
"minprops": {
"matchPrefix": "$__"
}
}