You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
2 years ago
|
{
|
||
|
"name": "@adobe/css-tools",
|
||
|
"version": "4.0.1",
|
||
|
"description": "CSS parser / stringifier",
|
||
|
"main": "dist/umd/cssTools.js",
|
||
|
"module": "dist/cjs/cssTools.js",
|
||
|
"types": "dist/cjs/index.d.ts",
|
||
|
"files": [
|
||
|
"dist",
|
||
|
"Readme.md"
|
||
|
],
|
||
|
"devDependencies": {
|
||
|
"@types/benchmark": "^2.1.1",
|
||
|
"@types/bytes": "^3.1.1",
|
||
|
"@types/jest": "^28.1.1",
|
||
|
"@types/node": "^18.0.0",
|
||
|
"benchmark": "^2.1.4",
|
||
|
"bytes": "^3.1.0",
|
||
|
"gts": "^4.0.0",
|
||
|
"jest": "^28.1.1",
|
||
|
"ts-jest": "^28.0.4",
|
||
|
"ts-loader": "^9.3.0",
|
||
|
"ts-node": "^10.8.1",
|
||
|
"typescript": "^4.7.3",
|
||
|
"webpack": "^5.73.0",
|
||
|
"webpack-cli": "^4.9.2"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"benchmark": "ts-node benchmark/index.ts",
|
||
|
"test": "jest",
|
||
|
"lint": "gts lint",
|
||
|
"clean": "gts clean",
|
||
|
"build": "npm run compile",
|
||
|
"compile": "NODE_ENV=prod webpack --mode production",
|
||
|
"fix": "gts fix",
|
||
|
"prepare": "npm run build",
|
||
|
"pretest": "npm run build",
|
||
|
"posttest": "npm run lint"
|
||
|
},
|
||
|
"author": "TJ Holowaychuk <tj@vision-media.ca>",
|
||
|
"contributors": [
|
||
|
"Jean-Philippe Zolesio <holblin@gmail.com>"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/adobe/css-tools.git"
|
||
|
},
|
||
|
"keywords": [
|
||
|
"css",
|
||
|
"parser",
|
||
|
"stringifier",
|
||
|
"stylesheet"
|
||
|
]
|
||
|
}
|