-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.06 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.06 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
{
"name": "column-control",
"version": "2.1.0",
"description": "decorate an html table with basic column controls",
"main": "index.js",
"scripts": {
"example": "beefy example/basic.js --live",
"test": "testling"
},
"repository": {
"type": "git",
"url": "https://github.com/wunderlink/column-control.git"
},
"devDependencies": {
"browserify": "~2.35.1",
"coffee-script": "~1.6.3",
"beefy": "~0.4.2",
"tape": "^2.12.1",
"testling": "^1.6.1"
},
"dependencies": {
"browserify": "~2.35.1",
"coffeeify": "~0.5.2",
"cssify": "~0.4.1"
},
"keywords": [
"table",
"columns"
],
"author": "Tyler Bushnell",
"license": "BSD",
"browser": "./lib/index.coffee",
"browserify": {
"transform": [
"coffeeify",
"cssify"
]
},
"testling": {
"files": "test/*.js",
"browsers": [
"ie/6..latest",
"chrome/22..latest",
"firefox/16..latest",
"safari/latest",
"opera/11.0..latest",
"iphone/6",
"ipad/6",
"android-browser/latest"
]
}
}