forked from ganlanyuan/tiny-slider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "tiny-slider",
"version": "2.9.2",
"description": "Vanilla javascript slider for all purposes, inspired by Owl Carousel.",
"main": "dist/tiny-slider.js",
"types": "src/tiny-slider.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"ngrok": "~/ngrok http 3000",
"start": "nodemon --watch test/js/tests-async.js --exec npm run compile",
"compile": "npx babel test/js/tests-async.js -o test/js/tests-async-es5.js",
"test": "nightwatch -c browserstack.conf.js -e chrome,firefox,ie,edge,safari,opera",
"chrome": "nightwatch -c browserstack.conf.js -e chrome",
"firefox": "nightwatch -c browserstack.conf.js -e firefox",
"ie": "nightwatch -c browserstack.conf.js -e ie",
"edge": "nightwatch -c browserstack.conf.js -e edge",
"safari": "nightwatch -c browserstack.conf.js -e safari",
"opera": "nightwatch -c browserstack.conf.js -e opera"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ganlanyuan/tiny-slider.git"
},
"files": [
"dist",
"src"
],
"keywords": [],
"author": "ganlanyuan <ganlanyuan@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ganlanyuan/tiny-slider/issues"
},
"homepage": "https://github.com/ganlanyuan/tiny-slider#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"nightwatch": "^0.9.21",
"nodemon": "^1.17.5"
},
"browserify": {
"transform": [
["babelify", {
"presets": ["@babel/preset-env"]
}]
]
}
}