forked from loryjs/lory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
133 lines (133 loc) · 3.6 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "lory-lesara.js",
"description": "Touch enabled minimalistic slider written in vanilla JavaScript. Added optional parameter 'forceIndexUpdate'",
"author": {
"name": "Roman Seidelsohn",
"email": "[email protected]",
"url": "https://www.lesara.de"
},
"version": "2.2.3",
"bugs": {
"url": "https://github.com/RSeidelsohn/lory-lesara/issues"
},
"inceptionYear": 2017,
"licenses": [
{
"type": "MIT",
"url": "https://raw.githubusercontent.com/RSeidelsohn/lory-lesara/master/LICENSE"
}
],
"repository": {
"type": "git",
"url": "https://github.com/RSeidelsohn/lory-lesara.git"
},
"keywords": [
"responsive",
"lightweight",
"minimalistic",
"carousel",
"slider",
"touch",
"slideshow",
"jQuery",
"mobile"
],
"main": "./dist/lory.js",
"jsnext:main": "./src/lory.js",
"devDependencies": {
"babel-cli": "6.22.2",
"babel-core": "6.21.0",
"babel-loader": "6.2.9",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"babel-runtime": "6.22.0",
"better-npm-run": "0.0.13",
"chai": "3.5.0",
"clamp.js": "0.2.9",
"custom-event": "1.0.1",
"cz-conventional-changelog": "1.2.0",
"debug": "2.5.1",
"dependency-check": "2.8.0",
"eslint": "3.15.0",
"eslint-config-standard": "6.2.1",
"eslint-plugin-promise": "3.4.1",
"eslint-plugin-standard": "2.0.1",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.10.0",
"fs-extra": "2.0.0",
"html-loader": "0.4.4",
"html-webpack-plugin": "2.28.0",
"karma": "1.4.1",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "2.0.0",
"karma-firefox-launcher": "1.0.0",
"karma-fixture": "0.2.6",
"karma-html2js-preprocessor": "1.1.0",
"karma-ie-launcher": "1.0.0",
"karma-mocha": "1.2.0",
"karma-mocha-reporter": "2.2.2",
"karma-opera-launcher": "1.0.0",
"karma-phantomjs-launcher": "1.0.2",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.1.0",
"mocha": "3.2.0",
"nodemon": "1.11.0",
"phantomjs-prebuilt": "2.1.14",
"rimraf": "2.5.4",
"sauce-connect-launcher": "1.1.1",
"saucelabs": "1.3.0",
"semantic-release": "4.3.5",
"uglify-js": "2.7.5",
"unminified-webpack-plugin": "1.2.0",
"url-loader": "0.5.7",
"webpack": "1.13.3",
"webpack-dev-server": "1.16.2"
},
"scripts": {
"clean": "rimraf dist/*",
"check": "npm run lint -s && dependency-check package.json",
"lint": "eslint src",
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"build": "better-npm-run build",
"travis": "npm run build && npm run karma-travis",
"karma-sauce": "karma start saucelabs.karma.conf.js",
"karma-travis": "karma start travis.karma.conf.js",
"karma-local": "karma start local.karma.conf.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"betterScripts": {
"compile": {
"command": "babel-node bin/compile",
"env": {
"DEBUG": "app:*"
}
},
"start": {
"command": "babel-node bin/server",
"env": {
"DEBUG": "app:*"
}
},
"dev": {
"command": "nodemon --exec babel-node bin/server",
"env": {
"NODE_ENV": "development",
"DEBUG": "app:*"
}
},
"build": {
"command": "npm run clean && better-npm-run compile",
"env": {
"NODE_ENV": "production",
"DEBUG": "app:*"
}
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}