forked from ovanderzee/inactivity-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·65 lines (65 loc) · 1.94 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
56
57
58
59
60
61
62
63
64
65
{
"name": "inactivity-listener",
"version": "2.1.0",
"description": "Do something when a timespan of no interaction passes",
"main": "dist/inactivityListener.js",
"module": "module/inactivityListener.js",
"directories": {
"test": "test"
},
"types": "types/index.d.ts",
"scripts": {
"prebuild": "cf dist module types && prettier './src/*.ts' --write",
"build": "rollup --config",
"coverage": "cf coverage && jest --coverage",
"once": "npm run test && npm run build",
"pretest": "cf temp && eslint src/*.ts --fix",
"test": "tsc && jest",
"watch": "onchange --initial \"src/*.ts\" -- npm run once --silent"
},
"keywords": [
"idle",
"inactivity",
"monitor",
"timer",
"tracker",
"front-end"
],
"author": "Onno van der Zee",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ovanderzee/inactivity-listener.git"
},
"bugs": {
"url": "https://github.com/ovanderzee/inactivity-listener/issues"
},
"homepage": "https://github.com/ovanderzee/inactivity-listener#readme",
"devDependencies": {
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-typescript": "^8.4.0",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"clear-folder": "^4.1.0",
"coveralls": "^3.1.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.1",
"jest-environment-jsdom": "^29.0.1",
"onchange": "^7.1.0",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.0-next.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}