forked from loryjs/lory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.79 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
85
86
87
88
89
90
91
92
93
94
95
{
"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": "6.9.1",
"babel-loader": "6.2.4",
"babel-preset-es2015": "6.9.0",
"babel-preset-stage-0": "6.5.0",
"chai": "3.5.0",
"clamp.js": "0.2.9",
"custom-event": "1.0.0",
"cz-conventional-changelog": "1.1.6",
"dependency-check": "2.5.1",
"eslint": "2.11.1",
"eslint-config-standard": "5.3.1",
"eslint-plugin-promise": "1.3.2",
"eslint-plugin-standard": "1.3.2",
"karma": "0.13.22",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "1.0.1",
"karma-firefox-launcher": "1.0.0",
"karma-fixture": "0.2.6",
"karma-html2js-preprocessor": "1.0.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "1.0.1",
"karma-mocha-reporter": "2.0.3",
"karma-opera-launcher": "1.0.0",
"karma-phantomjs-launcher": "1.0.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.0.0",
"mocha": "2.5.3",
"phantomjs-prebuilt": "2.1.7",
"rimraf": "2.5.2",
"sauce-connect-launcher": "0.14.0",
"saucelabs": "1.2.0",
"semantic-release": "4.3.5",
"uglify-js": "2.6.2",
"watch": "0.18.0",
"webpack": "1.13.1",
"webpack-dev-server": "1.14.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"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}