forked from loryjs/lory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.51 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "lory.js",
"description": "Touch enabled minimalistic slider written in vanilla JavaScript.",
"author": {
"name": "Maximilian Heinz",
"email": "info@maximilian-heinz.de",
"url": "https://twitter.com/_meandmax_"
},
"bugs": {
"url": "https://github.com/meandmax/lory/issues"
},
"inceptionYear": 2015,
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/meandmax/lory/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/meandmax/lory.git"
},
"keywords": [
"responsive",
"lightweight",
"minimalistic",
"carousel",
"slider",
"touch",
"slideshow",
"jQuery",
"mobile"
],
"main": "./dist/lory.js",
"jsnext:main": "./src/lory.js",
"devDependencies": {
"babel-core": "5.8.33",
"babel-loader": "5.3.2",
"clamp.js": "0.2.9",
"custom-event": "1.0.0",
"dependency-check": "2.5.1",
"eslint": "1.7.3",
"eslint-config-standard": "4.4.0",
"eslint-plugin-standard": "1.3.1",
"karma": "^0.13.14",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "0.2.0",
"karma-firefox-launcher": "^0.1.6",
"karma-fixture": "0.2.5",
"karma-html2js-preprocessor": "0.1.0",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "0.2.0",
"karma-mocha-reporter": "1.1.1",
"karma-opera-launcher": "^0.3.0",
"karma-phantomjs-launcher": "^0.2.1",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.3.0",
"phantomjs": "^1.9.18",
"rimraf": "2.4.3",
"sauce-connect-launcher": "^0.13.0",
"saucelabs": "^1.0.1",
"semantic-release": "^4.3.5",
"uglify-js": "2.5.0",
"watch": "^0.16.0",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.1"
},
"scripts": {
"clean": "rimraf dist/* && rimraf demo/js/*",
"check": "npm run lint -s && dependency-check package.json --entry src",
"lint": "eslint src",
"watch": "watch 'npm run build' src",
"karma-local": "karma start local.karma.conf.js",
"build": "npm run lint && webpack",
"travis": "npm run build && karma start saucelabs.karma.conf.js",
"uglify": "uglifyjs dist/lory.js -o dist/lory.min.js --compress --mangle && uglifyjs dist/jquery.lory.js -o dist/jquery.lory.min.js --compress --mangle",
"postbuild": "npm run uglify && cp -r dist/* demo/js/",
"start": "webpack-dev-server && npm run watch",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">= 0.10.0"
}
}