-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
49 lines (49 loc) · 1.26 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
{
"name": "@travishorn/session-timeout",
"version": "2.0.5",
"description": "Warn users when their session is about to expire. Dependency-free.",
"main": "dist/session-timeout.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack --watch",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"keywords": [
"front-end",
"javascript",
"session",
"timeout",
"timer",
"ui",
"user interface",
"warning"
],
"author": "Travis Horn <[email protected]> (https://travishorn.com)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"babel-loader": "^8.0.5",
"css-loader": "^6.7.3",
"eslint": "^5.15.3",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/travishorn/session-timeout.git"
},
"bugs": {
"url": "https://github.com/travishorn/session-timeout/issues"
},
"homepage": "https://github.com/travishorn/session-timeout#readme",
"files": [
"dist/"
]
}