This repository was archived by the owner on Jan 23, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 KB
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
{
"name": "jquery-domec",
"title": "jQuery DOM Elements Creator",
"version": "1.2.0",
"description": "jQuery library for quick and easy DOM elements creation",
"main": "dist/jquery-domec.js",
"author": {
"name": "Lukasz Rajchel",
"url": "http://rajchel.pl"
},
"homepage": "https://github.com/RaYell/jquery-domec",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/RaYell/jquery-domec"
},
"keywords": [
"jquery",
"dom",
"domec"
],
"bugs": {
"url": "https://github.com/RaYell/jquery-domec/issues"
},
"licenses": [
{
"type": "Apache",
"url": "https://github.com/RaYell/jquery-domec/blob/master/LICENSE"
}
],
"dependencies": {
"jquery": "^2.1.4"
},
"devDependencies": {
"blanket": "^1.1.7",
"chai": "^3.0.0",
"codeclimate-test-reporter": "0.0.4",
"coveralls": "^2.11.2",
"grunt": "^0.4.5",
"grunt-blanket": "0.0.8",
"grunt-blanket-mocha": "^0.5.0",
"grunt-contrib-jshint": "^0.11.2",
"grunt-contrib-uglify": "^0.9.1",
"grunt-jscs": "^1.8.0",
"grunt-jslint": "^1.1.14",
"grunt-jsonlint": "^1.0.4",
"grunt-mocha": "^0.4.13",
"grunt-shell": "^1.1.2",
"jsdom": "3.1.2",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2"
},
"config": {
"blanket": {
"pattern": "src/jquery-domec.js"
}
}
}