-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
{
"name": "@elementsx/touch-x",
"version": "0.1.3",
"description": "Drag/Swipe Library For Mobile/Desktop Devices",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/elements-x/touch-x.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run lint && npm run build:lib && npm run build:docs",
"build:lib": "esbuild-x lib",
"build:docs": "esbuild-x build",
"start": "esbuild-x serve",
"lint": "eslint src lib --fix && git add ."
},
"publishConfig": {
"registry": "https://registry.npmjs.com/"
},
"preversion": "npm run build",
"pre-commit": [
"eslint"
],
"files": [
"dist"
],
"keywords": [
"javascript",
"js",
"events",
"DOM",
"html",
"swipe",
"touch",
"mobile"
],
"author": "Allen Kim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elements-x/touch-x/issues"
},
"homepage": "https://github.com/elements-x/touch-x#readme",
"devDependencies": {
"body-scroll-lock": "^4.0.0-beta.0",
"elements-x": "2.1.11",
"esbuild-x": "^0.3.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-unused-imports": "^2.0.0",
"http-server": "^13.0.0",
"open": "^8.4.0",
"rimraf": "^3.0.2"
}
}