-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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": "gesture-helper",
"version": "0.1.33",
"description": "a *tiny* touch & mouse library to help make tracking touch interactions more simple.",
"unpkg": "dist/index.js",
"main": "dist/index.js",
"repository": {
"type": "https",
"url": "https://github.com/glomotion/gesture-helper.git"
},
"bugs": {
"url": "https://github.com/glomotion/gesture-helper/issues"
},
"author": "Tim Paul <[email protected]>",
"license": "MIT",
"scripts": {
"demo": "webpack-dev-server --config ./webpack.demo.config.js --colors --open",
"build": "webpack --config ./webpack.config.js",
"prebuild": "rm -rf dist",
"prepublish": "yarn build"
},
"dependencies": {
"eventemitter2": "^6.0.0",
"performance-now": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@types/node": "^12.7.2",
"babel-loader": "^8.0.6",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^6.0.4",
"typescript": "^3.5.3",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.8.0"
}
}