-
-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
71 lines (71 loc) · 1.95 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
67
68
69
70
71
{
"name": "cssstyle",
"description": "CSSStyleDeclaration Object Model implementation",
"keywords": [
"CSS",
"CSSStyleDeclaration",
"StyleSheet"
],
"version": "4.1.0",
"homepage": "https://github.com/jsdom/cssstyle",
"maintainers": [
{
"name": "Jon Sakas",
"email": "jon.sakas@gmail.com",
"url": "https://jon.sakas.co/"
},
{
"name": "Rafał Ruciński",
"email": "fatfisz@gmail.com",
"url": "https://fatfisz.com"
}
],
"contributors": [
{
"name": "Chad Walker",
"email": "chad@chad-cat-lore-eddie.com",
"url": "https://github.com/chad3814"
}
],
"repository": "jsdom/cssstyle",
"bugs": "https://github.com/jsdom/cssstyle/issues",
"directories": {
"lib": "./lib"
},
"files": [
"lib/"
],
"main": "./lib/CSSStyleDeclaration.js",
"dependencies": {
"rrweb-cssom": "^0.7.1"
},
"devDependencies": {
"@babel/generator": "^7.25.6",
"@babel/parser": "^7.25.6",
"@babel/traverse": "^7.25.6",
"@babel/types": "^7.25.6",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"resolve": "^1.22.1"
},
"scripts": {
"download": "node ./scripts/downloadLatestProperties.mjs && eslint lib/allProperties.js --fix",
"generate": "run-p generate:*",
"generate:implemented_properties": "node ./scripts/generateImplementedProperties.mjs",
"generate:properties": "node ./scripts/generate_properties.js",
"lint": "npm run generate && eslint --max-warnings 0",
"lint:fix": "eslint --fix --max-warnings 0",
"prepublishOnly": "npm run lint && npm run test",
"test": "npm run generate && node --test",
"test-ci": "npm run lint && npm run test",
"update-authors": "git log --format=\"%aN <%aE>\" | sort -f | uniq > AUTHORS"
},
"license": "MIT",
"engines": {
"node": ">=18"
}
}