-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 1.99 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "thindom",
"title": "A thin DOM wrapper",
"description": "Inspired by jQuery, this simple library lets you create DOM elements really fast, with significantly more expressiveness than native DOM methods.",
"version": "1.1.4",
"homepage": "https://github.com/DoctorEvidence/thindom",
"author": {
"name": "Christopher Froehlich",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/DoctorEvidence/thindom"
},
"bugs": {
"url": "https://github.com/DoctorEvidence/thindom/issues"
},
"license": "CC0",
"licenses": [
{
"type": "Puclic Domain, CC0",
"url": "http://creativecommons.org/about/pdm"
}
],
"main": "dist/thinDOM.min.js",
"dependencies": {
"jquery": "2.2.0",
"lodash": "4.3.0"
},
"devDependencies": {
"browserify": "^13.0.0",
"browserify-shim": "3.8.12",
"coffee-script": "1.10.0",
"coffeeify": "^2.0.1",
"glob": "^6.0.4",
"gulp": "3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-bump": "^1.0.0",
"gulp-coffee": "2.3.1",
"gulp-coffeelint": "^0.6.0",
"gulp-concat": "2.6.0",
"gulp-debug": "^2.1.2",
"gulp-gh-pages": "0.5.4",
"gulp-git": "^1.7.0",
"gulp-header": "1.7.1",
"gulp-inject": "^3.0.0",
"gulp-livereload": "^3.8.1",
"gulp-load-plugins": "^1.2.0",
"gulp-notify": "2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-qunit": "1.3.1",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.4",
"gulp-template": "3.1.0",
"gulp-uglify": "1.5.2",
"gulp-util": "3.0.7",
"gulp-watch": "4.3.5",
"pretty-hrtime": "^1.0.1",
"qunit": "^0.9.0",
"tiny-lr": "^0.2.1",
"vinyl-source-stream": "1.1.0",
"watchify": "^3.7.0",
"wiredep": "^3.0.0"
},
"keywords": [],
"engines": {
"node": "5.4.1",
"npm": "3.5.3"
},
"scripts": {},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
"lodash": "global:_"
}
}