-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
50 lines (50 loc) · 1.18 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
50
{
"name": "virtual-dom-component",
"description": "A virtual DOM component (view).",
"version": "0.2.0",
"homepage": "https://github.com/alexmingoia/virtual-dom-component",
"author": {
"name": "Alex Mingoia",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/alexmingoia/virtual-dom-component.git"
},
"bugs": {
"url": "https://github.com/alexmingoia/virtual-dom-component/issues"
},
"licenses": [
{
"type": "BSD",
"url": "https://github.com/alexmingoia/virtual-dom-component/blob/master/LICENSE"
}
],
"main": "lib/virtual-dom-component",
"files": [
"lib"
],
"engines": {
"node": ">= 0.10.26",
"npm": ">=1.4.3"
},
"scripts": {
"test": "./node_modules/gulp/bin/gulp.js test"
},
"dependencies": {
"geval": "^2.1.1"
},
"devDependencies": {
"browserify": "^5.11.1",
"chai": "~1.8.0",
"gulp": "~3.5.0",
"gulp-clean": "^0.3.1",
"gulp-instrument": "^0.1.0",
"gulp-jshint": "~1.3.4",
"gulp-mocha-phantomjs": "^0.5.0",
"jshint-stylish": "~0.1.5",
"phantomjs": "^1.9.7-15",
"vinyl-source-stream": "^1.0.0"
},
"keywords": []
}