-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 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
40
41
42
{
"name": "multi-device-hover",
"version": "0.1.2",
"description": "Pure JavaScript library that add `.is-hover` class instead of css `:hover` for mobile and desktop.",
"main": "dist/MultiDeviceHover.js",
"types": "dist/MultiDeviceHover.d.ts",
"author": "R Sakai",
"repository": {
"type": "git",
"url": "git+https://github.com/sk-rt/multi-device-hover.git"
},
"keywords": [
"js",
"vanillajs",
"hover",
"touch",
"ui"
],
"scripts": {
"dev": "webpack-dev-server",
"dist": "NODE_ENV=production webpack -p",
"build": "webpack -p",
"lint": "tslint src/**/*.ts --fix --project tsconfig.json",
"prepare": "npm run dist",
"publish": "npm publish"
},
"license": "MIT",
"private": false,
"devDependencies": {
"prettier": "^1.15.3",
"ts-loader": "^5.3.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.17.0",
"tslint-config-standard": "^8.0.1",
"tslint-loader": "^3.5.4",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "^3.2.1",
"webpack": "^4.27.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}