-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1005 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
41
42
43
{
"name": "kdf-dom-operations",
"version": "0.0.2",
"description": "A diff-patch algorithm that works with KDDom tree.",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kdframework/dom-operations"
},
"directories": {
"test": "jest"
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
},
"author": "Umut Sirin <[email protected]>",
"license": "MIT",
"devDependencies": {
"coffee-script": "^1.8.0",
"jest-cli": "^0.2.0",
"synthetic-dom-events": "^0.2.2"
},
"jest": {
"testDirectoryName": "test",
"scriptPreprocessor": "./node_modules/kdf-core/test/coffee-processor.js",
"moduleFileExtensions": [
"coffee",
"js"
],
"testFileExtensions": [
"coffee",
"js"
]
},
"dependencies": {
"kdf-core": "0.0.x",
"kdf-dom": "0.0.x",
"kdf-dom-event-delegator": "0.0.x",
"kdf-event-emitter": "0.0.x",
"lodash": "^2.4.1",
"vdom": "0.0.22"
}
}