-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.19 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.19 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@iamspdarsan/div-js",
"displayName": "Div.js",
"version": "0.0.2",
"description": "Div.js enhances web performance by splitting CSS into device-specific files, minimizing network overhead, reducing costs, and speeding up load times.",
"main": "./dist/div.js",
"types": "./dist/types/div.d.ts",
"exports": {
"import": "./dist/div.js",
"require": "./dist/div.js",
"types": "./dist/types/div.d.ts"
},
"files": [
"dist"
],
"preferGlobal": true,
"bin": {
"div": "./dist/bin/cli.js"
},
"repository": {
"url": "https://github.com/iamspdarsan/div.js"
},
"bugs": {
"url": "https://github.com/iamspdarsan/div.js/issues"
},
"homepage": "https://www.npmjs.com/package/@iamspdarsan/div-js",
"author": "DARSAN <darsan@cresteem.com>",
"maintainers": [
"DARSAN <darsan@cresteem.com>"
],
"license": "Apache-2.0",
"private": false,
"scripts": {
"dev": "cls && rimraf dist && tsc -p tscdev.json && ncp ./div.c.json ./dist/div.c.json",
"dr": "yarn dev && yarn rp",
"rp": "node ./dist/div.js",
"test": "jest",
"build": "cls && rimraf dist && tsc -p tsconfig.json && ncp ./div.c.json ./dist/div.c.json",
"clean": "cls && rimraf dist",
"deploy": "yarn test && yarn build && yarn publish --access public && git push"
},
"keywords": [
"css optimization",
"device-specific css",
"web performance",
"css splitting",
"load times",
"network efficiency",
"responsive design",
"web development",
"performance enhancement",
"cost reduction",
"network overhead",
"device delivery",
"css management",
"website speed",
"front-end optimization",
"load speed",
"scalable web",
"data transfer",
"performance tuning",
"web assets",
"seo"
],
"dependencies": {
"cheerio": "1.0.0-rc.12",
"commander": "12.1.0",
"css": "3.0.0",
"css-mediaquery": "^0.1.2",
"glob": "11.0.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@types/css": "latest",
"@types/css-mediaquery": "^0.1.4",
"@types/lodash": "^4.17.7",
"@types/node": "latest",
"ncp": "latest",
"rimraf": "latest",
"ts-node": "latest",
"typescript": "latest"
}
}