forked from ganlanyuan/tiny-slider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.04 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
{
"name": "@justia/tiny-slider",
"version": "2.9.11",
"description": "Vanilla javascript slider for all purposes, inspired by Owl Carousel.",
"keywords": [
"slider",
"vanilla js",
"carousel"
],
"homepage": "https://github.com/justia/tiny-slider#readme",
"bugs": {
"url": "https://github.com/justia/tiny-slider/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/justia/tiny-slider.git"
},
"license": "MIT",
"author": "ganlanyuan <[email protected]>",
"main": "dist/tiny-slider.js",
"directories": {
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"ngrok": "~/ngrok http 3000",
"start": "nodemon --watch test/js/tests-async.js --exec npm run compile",
"build": "rollup --config rollup.config.js",
"release:types": "cp src/tiny-slider.d.ts dist/",
"release:cleanup": "git checkout . && git clean -df",
"release": "npm run release:types && npm run build && npm publish && npm run release:cleanup",
"compile": "npx babel test/js/tests-async.js -o test/js/tests-async-es5.js",
"build-watch": "babel --watch src -o dist/tiny-slider.js",
"prepare": "npm run build",
"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"
},
"browserslist": "> 0.25%, not dead",
"engines": {
"node": ">=14",
"npm": ">=7"
},
"devDependencies": {
"@babel/cli": "^7.14.8",
"@babel/core": "^7.15.0",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.15.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"gulp-uglify-es": "^3.0.0",
"nightwatch": "^1.7.11",
"nodemon": "^2.0.3",
"rollup": "^2.56.3"
}
}