-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 1.53 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
{
"name": "dom-elements",
"version": "0.2.0",
"description": "Polyfill for Elements class and query/queryAll additions to the DOM standard.",
"keywords": [
"DOM",
"Level 4",
"browser",
"polyfill",
"shim",
"elements",
"query",
"queryAll",
"dom4"
],
"homepage": "https://github.com/barberboy/dom-elements",
"bugs": "https://github.com/barberboy/dom-elements/issues",
"repository": {
"type": "git",
"url": "https://github.com/barberboy/dom-elements.git"
},
"main": "src/index.js",
"files": [
"lib",
"src"
],
"directories": {
"src": "src",
"lib": "lib",
"test": "test"
},
"devDependencies": {
"tape": "^2.12.3",
"gulp-browserify": "^0.5.0",
"gulp-uglify": "^0.2.1",
"gulp-jshint": "^1.5.5",
"gulp": "^3.6.2",
"jshint-stylish": "^0.1.5",
"gulp-rename": "^1.2.0",
"testling": "^1.7.1"
},
"scripts": {
"start": "gulp",
"test": "gulp lint && testling"
},
"testling": {
"files": "test/**/*.js",
"browsers": [
"iexplore/9.0..latest",
"chrome/15.0..latest",
"firefox/4..latest",
"opera/12.0..latest",
"safari/5.0.5..latest",
"firefox/nightly",
"opera/next",
"chrome/canary",
"iphone/6.0..latest",
"ipad/6.0..latest",
"android-browser/4.2..latest"
]
},
"author": {
"name": "Benjamin Barber",
"url": "http://twitter.com/barberboy"
},
"contributors": [
"Matthias Le Brun (http://https://github.com/bloodyowl)"
],
"license": "MIT"
}