-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "mediaq",
"version": "2.0.0",
"description": "Listen to media query updates in JavaScript",
"main": "dist/mediaq.js",
"types": "types/mediaq.d.ts",
"files": [
"dist/mediaq.js",
"types/mediaq.d.ts",
"README.md",
"LICENSE.md"
],
"scripts": {
"test": "karma start",
"build": "webpack --config webpack.config.js",
"format": "prettier --write './{src,test}/**/*.ts' './webpack.config.js'",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maroun-baydoun/mediaq.git"
},
"keywords": [
"mediaquery",
"responsive",
"javascript"
],
"author": {
"name": "Maroun Baydoun",
"url": "https://maroun-baydoun.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/maroun-baydoun/mediaq/issues"
},
"homepage": "https://dev.maroun-baydoun.com/mediaq/",
"devDependencies": {
"@types/jasmine": "3.6.8",
"clean-webpack-plugin": "3.0.0",
"jasmine-core": "3.6.0",
"karma": "6.3.1",
"karma-chrome-launcher": "3.1.0",
"karma-jasmine": "4.0.1",
"karma-typescript": "5.5.1",
"prettier": "2.2.1",
"ts-loader": "8.0.18",
"typescript": "4.2.3",
"webpack": "5.28.0",
"webpack-cli": "4.5.0"
}
}