-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "swipe-up",
"version": "1.2.19",
"description": "Reference 'Swipe Up' functionality implementation based on 'Browser Ui State' intended to provide a way to expand browser to full screen state",
"main": "dist/swipe-up.js",
"module": "dist/swipe-up.js",
"files": [
"dist/swipe-up.js",
"src"
],
"scripts": {
"start": "webpack-dev-server",
"build": "webpack -p && npm run test",
"test": "./node_modules/.bin/cucumber.js --compiler js:babel-core/register",
"prepare": "npm run build",
"deploy-stage": "npm version patch -m '[version] air-pm %s'",
"postversion": "git push && git push --tags"
},
"author": "Andriy Halyasovskyy (https://github.com/TheBit)",
"contributors": [
"Volodymyr Vyshko (https://github.com/vyshkov)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/device-hackers/swipe-up.git"
},
"bugs": "https://github.com/device-hackers/swipe-up/issues",
"homepage": "https://github.com/device-hackers/swipe-up",
"keywords": [
"mobile",
"browser",
"swipe-up",
"fullscreen"
],
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.1",
"copy-webpack-plugin": "^4.2.0",
"cucumber": "^3.1.0",
"html-webpack-plugin": "^2.29.0",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
},
"dependencies": {
"browser-ui-state": "^1.1.28",
"chai": "^4.1.2",
"detect-passive-events": "^1.0.4",
"es6-object-assign": "^1.1.0",
"es6-weak-map": "^2.0.2"
}
}