-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 1.87 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
66
{
"name": "breakpoint-helper",
"version": "2.0.4",
"description": "Small helper library to work with layout breakpoints in Javascript.",
"author": "Nicolas Cusan <[email protected]>",
"license": "MIT",
"repository": "[email protected]:nicolas-cusan/breakpoint-helper.git",
"source": "./src/breakpoint-helper.ts",
"main": "./dist/breakpoint-helper.js",
"types": "./dist/breakpoint-helper.d.ts",
"files": [
"dist/*",
"src/*",
"README.md",
"LICENSE"
],
"scripts": {
"build:src": "rm -rf dist && tsc && node build.js",
"build:docs": "rm -rf docs-dist && node build-docs.js",
"build": "export NODE_ENV=production && npm run build:src && npm run build:docs",
"dev:src": "rm -rf dist && tsc --watch",
"dev": "export NODE_ENV=development && npm run build:docs",
"docs": "export NODE_ENV=production && rm -rf docs-dist && node build-docs.js && gh-pages -d docs-dist",
"prepublishOnly": "npm run -s build"
},
"targets": {
"main": false
},
"type": "module",
"keywords": [
"media-queries",
"media-query",
"breakpoint",
"breakpoint-helper",
"css",
"sass",
"scss",
"tailwind",
"tailwindcss",
"responsive",
"max-width",
"min-width",
"typescript"
],
"devDependencies": {
"@parcel/core": "^2.9.1",
"@parcel/packager-raw-url": "^2.9.1",
"@parcel/packager-xml": "^2.9.1",
"@parcel/transformer-sass": "^2.9.1",
"@parcel/transformer-webmanifest": "^2.9.1",
"@parcel/transformer-xml": "^2.9.1",
"cheerio": "^1.0.0-rc.12",
"esbuild": "^0.17.19",
"esbuild-plugin-copy": "^2.1.1",
"gh-pages": "^5.0.0",
"highlight.js": "^11.8.0",
"marked": "^5.0.3",
"marked-gfm-heading-id": "^3.0.3",
"marked-highlight": "^2.0.1",
"marked-mangle": "^1.0.1",
"parcel": "^2.9.1",
"prettier": "^2.8.8",
"sass": "^1.62.1",
"typescript": "^5.0.4"
}
}