-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
57 lines (57 loc) · 1.45 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
{
"name": "floating-label",
"version": "2.0.0",
"description": "A floating label plugin written in vanilla javascript",
"main": "floatingLabel.js",
"scripts": {
"start": "http-server",
"test": "standard; browserify test/index.js | tape-run -b phantom | tap-spec",
"dist": "browserify floatingLabel.js -s floatingLabel | derequire > dist/floatingLabel.js; browserify floatingLabel.js -s floatingLabel | derequire | uglifyjs - > dist/floatingLabel.min.js"
},
"testling": {
"files": "test/index.js",
"browsers": [
"ie/8..latest",
"chrome/latest",
"firefox/latest",
"safari/latest",
"opera/latest"
]
},
"repository": {
"type": "git",
"url": "https://github.com/datuhealth/floating-label.git"
},
"keywords": [
"floating",
"label",
"label",
"input",
"forms",
"javascript"
],
"author": "Mike Engel <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/datuhealth/floating-label/issues"
},
"homepage": "https://datuhealth.github.io/floating-label/",
"devDependencies": {
"browserify": "^13.0.0",
"derequire": "^2.0.0",
"es5-shim": "^4.1.15",
"http-server": "^0.9.0",
"phantomjs": "^2.1.2",
"pre-commit": "^1.1.2",
"standard": "^7.0.1",
"tap-spec": "^4.1.0",
"tape": "^4.2.1",
"tape-run": "^2.1.0",
"uglify-js": "^2.5.0"
},
"standard": {
"ignore": [
"dist/"
]
}
}