-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
67 lines (67 loc) · 1.76 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": "selectric",
"version": "1.13.0",
"main": "public/jquery.selectric.js",
"title": "jQuery Selectric",
"author": {
"name": "Leonardo Santos",
"email": "leocs.1991@gmail.com"
},
"license": "MIT",
"description": "Fast, simple and light jQuery plugin to customize HTML selects",
"keywords": [
"jquery-plugin",
"ecosystem:jquery",
"select",
"selectbox",
"dropdown",
"form",
"input",
"ui"
],
"docs": "http://selectric.js.org/",
"demo": "http://selectric.js.org/demo",
"bugs": "https://github.com/lcdsantos/jQuery-Selectric/issues",
"homepage": "http://selectric.js.org/",
"repository": {
"type": "git",
"url": "https://github.com/lcdsantos/jQuery-Selectric.git"
},
"dependencies": {
"jquery": "^3.1.1"
},
"devDependencies": {
"codecov": "^1.0.1",
"eslint": "^3.13.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-bump": "^2.5.1",
"gulp-connect": "^5.0.0",
"gulp-eslint": "^3.0.1",
"gulp-gh-pages": "^0.5.4",
"gulp-header": "^1.8.8",
"gulp-load-plugins": "^1.4.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-template": "^4.0.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"gulp-zip": "^3.2.0",
"istanbul": "^0.4.5",
"jasmine-core": "^2.5.2",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.1",
"karma-phantomjs-launcher": "^1.0.2",
"phantomjs-prebuilt": "^2.1.14"
},
"scripts": {
"test": "npm run lint && npm run test:single",
"test:single": "karma start --single-run --browsers PhantomJS",
"test:watch": "karma start",
"lint": "eslint src/*.js",
"codecov": "codecov"
}
}