-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
60 lines (60 loc) · 1.83 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
{
"name": "inactivity-countdown-timer",
"version": "2.0.0-beta-2",
"description": "A plain JS (Typescript) module that will countdown and timeout when users are inactive/idle.",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"keywords": [
"inactivity",
"inactive",
"countdown",
"timer",
"idle"
],
"scripts": {
"test": "cross-env NODE_ENV=test karma start",
"test-via-saucelabs": "cross-env NODE_ENV=test SAUCELABS=true karma start",
"start": "cross-env NODE_ENV=dev webpack-dev-server --host 0.0.0.0",
"build": "cross-env NODE_ENV=distribution webpack",
"document": "cross-env npm run typedoc -- --out ./docs src/inactivity-countdown-timer.ts --theme minimal --mode file --excludeNotExported",
"commit": "git-cz",
"typedoc": "typedoc"
},
"repository": {
"type": "git",
"url": "https://github.com/vespertilian/inactivity-countdown-timer"
},
"bugs": {
"url": "https://github.com/vespertilian/inactivity-countdown-timer/issues"
},
"homepage": "https://github.com/vespertilian/inactivity-countdown-timer",
"author": "Cameron Batt",
"license": "MIT",
"devDependencies": {
"@types/jasmine": "^2.8.16",
"@types/node": "^12.7.9",
"commitizen": "^4.0.3",
"core-js": "^3.2.1",
"cross-env": "^1.0.8",
"cz-conventional-changelog": "^3.0.2",
"jasmine": "^2.9.0",
"karma": "^4.3.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^1.1.2",
"karma-sauce-launcher": "^2.0.2",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"ts-loader": "^6.2.0",
"tslint": "^5.2.0",
"typedoc": "^0.15.0",
"typescript": "^3.6.3",
"webpack": "^4.41.0",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}