-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 910 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 910 Bytes
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
{
"name": "kdf-view",
"version": "0.0.1",
"description": "Interactive UI component of KDFramework",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kdframework/view"
},
"directories": {
"test": "jest"
},
"scripts": {
"test": "node ./node_modules/jest-cli/bin/jest.js"
},
"author": "Umut Sirin <u@kd.io>",
"license": "MIT",
"dependencies": {
"kdf-dom": "0.0.x",
"kdf-event-emitter": "0.0.x",
"kdf-pistachio": "0.0.x"
},
"devDependencies": {
"coffee-script": "^1.8.0",
"jest-cli": "^0.2.1",
"kdf-core": "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"
]
}
}