-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 1.67 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": "computed-style",
"description": "Cross-browser currentStyle/getComputedStyle implementation",
"version": "0.3.0",
"homepage": "https://github.com/twolfson/computedStyle",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/computedStyle.git"
},
"bugs": {
"url": "https://github.com/twolfson/computedStyle/issues"
},
"main": "dist/computedStyle.commonjs.js",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/computedStyle/blob/master/LICENSE-MIT"
}
],
"scripts": {
"build": "grunt build",
"lint": "twolfson-style lint grunt.js lib/computedStyle.js test/",
"_pretest": "twolfson-style install",
"test": "npm run build && testem --file test/testem.json ci && npm run lint"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-uglify": "~0.6.0",
"grunt-templater": "0.0.4",
"jscs": "~1.8.1",
"jshint": "~2.5.10",
"mocha": "~1.9.0",
"mustache": "~2.3.0",
"testem": "~0.2.83",
"twolfson-style": "~1.6.0"
},
"keywords": [
"cross-browser",
"getComputedStyle",
"currentStyle",
"css",
"style"
],
"testling": {
"files": "test/*.js",
"scripts": [
"dist/computedStyle.js"
],
"harness": "mocha",
"browsers": [
"ie/6..latest",
"chrome/20..latest",
"chrome/canary",
"firefox/10..latest",
"firefox/nightly",
"safari/latest",
"opera/11.0..latest",
"opera/next",
"iphone/6",
"ipad/6"
]
}
}