forked from ganlanyuan/tiny-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "tiny-slider",
"version": "2.8.8",
"description": "Vanilla javascript slider for all purposes, inspired by Owl Carousel.",
"main": "src/tiny-slider.js",
"types": "src/tiny-slider.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"ngrok": "ngrok http 3000",
"test": "nightwatch -c browserstack.conf.js -e chrome,firefox,ie,edge,safari,opera",
"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"
},
"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": "^0.9.21",
"nodemon": "^1.17.5"
}
}