-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "dom-events-delegation",
"version": "1.0.0",
"description": "A JavaScript event handler micro library.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/**.js, tests/suite/*.js",
"test": "karma start karma-travis-conf.js",
"lcl-test": "karma start karma-conf.js",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "https://github.com/brunoscopelliti/dom-events.git"
},
"keywords": [
"dom",
"events",
"delegation",
"micro-framework"
],
"author": "Bruno Scopelliti",
"license": "MIT",
"bugs": {
"url": "https://github.com/brunoscopelliti/dom-events/issues"
},
"homepage": "https://github.com/brunoscopelliti/dom-events",
"devDependencies": {
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-plugin-istanbul": "3.0.0",
"babel-preset-es2015": "6.18.0",
"eslint": "3.12.2",
"karma": "1.3.0",
"karma-chrome-launcher": "2.0.0",
"karma-coverage": "1.1.1",
"karma-firefox-launcher": "1.0.0",
"karma-ie-launcher": "1.0.0",
"karma-qunit": "1.2.1",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.1.0",
"karma-sinon": "1.0.5",
"karma-webpack": "1.8.1",
"qunitjs": "2.1.0",
"sinon": "2.0.0-pre.5",
"webpack": "2.2.0-rc.2"
}
}