-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.72 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.72 KB
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
{
"name": "@taikonauten/windowatch",
"version": "2.1.6",
"description": "Library to handle scroll-, resize- and breakpoint-change events globally.",
"main": "index.js",
"types": "index.d.ts",
"license": "MIT",
"scripts": {
"clean": "del-cli index.js index.d.ts",
"start": "webpack serve --config webpack.playground.js",
"build": "npm run clean && tsc --project tsconfig.build.json",
"lint:js": "eslint ./src",
"lint": "npm run lint:js",
"test": "karma start karma.conf.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/taikonauten/windowatch.git"
},
"author": "Fränz Friederes (ff@taikonauten.com)",
"bugs": {
"url": "https://github.com/taikonauten/windowatch/issues"
},
"homepage": "https://github.com/taikonauten/windowatch",
"devDependencies": {
"@taikonauten/linters-js": "^1.1.0",
"@taikonauten/linters-typescript": "^1.2.0",
"@types/chai": "^4.3.1",
"@types/chai-spies": "^1.0.3",
"@types/karma": "^6.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"chai-spies": "^1.0.0",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"del-cli": "^4.0.1",
"eslint": "^8.19.0",
"html-webpack-plugin": "^5.5.0",
"karma": "^6.4.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.0.0",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.3"
}
}