forked from lukasoppermann/html5sortable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.94 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
{
"name": "html5sortable",
"main": "dist/html.sortable.js",
"version": "0.3.1",
"license": "MIT",
"description": "Lightweight jQuery plugin to create sortable lists and grids using native HTML5 drag and drop API.",
"author": {
"name": "Alexandru Badiu",
"email": "andu@ctrlz.ro",
"url": "http://alexandrubadiu.ro"
},
"contributors": [
{
"name": "Lukas Oppermann",
"email": "lukas@vea.re",
"url": "http://vea.re"
}
],
"keywords": [
"jquery",
"sortable",
"html5",
"drag and drop"
],
"repository": {
"type": "git",
"url": "http://github.com/voidberg/html5sortable"
},
"bugs": {
"url": "http://github.com/voidberg/html5sortable/issues",
"email": "andu@ctrlz.ro"
},
"devDependencies": {
"chai": "^3.0.0",
"coveralls": "^2.11.2",
"del": "2.x.x",
"gulp": "^3.8.11",
"gulp-bump": "1.x.x",
"gulp-jscs": "3.x.x",
"jshint": "2.x.x",
"gulp-jshint": "2.x.x",
"gulp-prompt": "^0.1.2",
"gulp-rename": "^1.2.2",
"gulp-shell": "0.5.x",
"gulp-sourcemaps": "^1.5.2",
"gulp-strip-code": "^0.1.2",
"gulp-uglify": "^1.2.0",
"gulp-umd": "^0.2.0",
"gulp-util": "^3.0.4",
"istanbul": "0.4.x",
"jsdom": "7.x.x",
"jshint-stylish": "2.x.x",
"minimist": "^1.1.1",
"mocha": "^2.2.4",
"mocha-istanbul": "^0.2.0",
"requirejs": "^2.1.17",
"semver": "5.x.x"
},
"scripts": {
"test": "npm run test-plugin && gulp test",
"travis": "npm run cover && ./node_modules/.bin/mocha test/umd/module.js && gulp test",
"test-plugin": "./node_modules/.bin/mocha test/umd/module.js && ./node_modules/.bin/mocha test/*.js",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha test/*.js --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"build": "gulp build"
},
"dependencies": {
"jquery": "^2.1.4"
}
}