This repository has been archived by the owner on May 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "css-controls",
"description": "Cross-browser stylesheet creation and css rule creation/deletion (includes IE6 support)",
"version": "0.1.1",
"homepage": "https://github.com/twolfson/css-controls",
"author": {
"name": "Todd Wolfson",
"email": "[email protected]",
"url": "http://twolfson.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/twolfson/css-controls.git"
},
"bugs": {
"url": "https://github.com/twolfson/css-controls/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/twolfson/css-controls/blob/master/LICENSE-MIT"
}
],
"main": "lib/css-controls",
"engines": {
"node": ">= 0.6.0"
},
"scripts": {
"build-test": "npm run build && browserify test/css-controls_test.js --outfile test/css-controls_test.browserify.js",
"build": "browserify lib/css-controls.js --standalone css-controls --outfile dist/css-controls.js",
"test": "testem ci"
},
"dependencies": {},
"devDependencies": {
"grunt": "~0.3.17",
"browserify": "~2.23.1",
"computed-style": "~0.1.3",
"mocha": "~1.12.0",
"testem": "~0.3.12",
"underscore": "~1.4.4"
},
"keywords": [
"cross-browser",
"stylesheet",
"css",
"rule",
"browser"
],
"testling": {
"files": [
"test/css-controls_test.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"
]
}
}