-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 938 Bytes
/
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
{
"name": "kdf-dom-event-delegator",
"version": "0.0.1",
"description": "Small package that forwards DOM events to KDEventEmitter instances.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kdframework/dom-event-delegator"
},
"directories": {
"test": "jest"
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
},
"author": "Umut Sirin <[email protected]>",
"license": "MIT",
"dependencies": {
"weakmap": "0.0.6"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"jest-cli": "^0.2.1",
"kdf-core": "0.0.x",
"kdf-event-emitter": "0.0.x",
"synthetic-dom-events": "^0.2.2"
},
"jest": {
"testDirectoryName": "test",
"scriptPreprocessor": "./node_modules/kdf-core/test/coffee-processor.js",
"moduleFileExtensions": [
"coffee",
"js"
],
"testFileExtensions": [
"coffee",
"js"
]
}
}