forked from jameson5555/tiny-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.63 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
{
"name": "tiny-slider",
"version": "2.9.3",
"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 <[email protected]>",
"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": "^1.3.5",
"nodemon": "^2.0.3"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env"
]
}
]
]
}
}