-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.45 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.45 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
{
"name": "@cdoublev/css",
"description": "CSS Object Model implementation in JavaScript",
"author": "Guillaume Lebas",
"license": "MIT",
"keywords": [
"CSS"
],
"version": "0.1.0",
"engines": {
"node": ">=24"
},
"homepage": "https://github.com/cdoublev/css#readme",
"bugs": "https://github.com/cdoublev/css/issues",
"repository": "github:cdoublev/css",
"directories": {
"doc": "doc",
"lib": "./lib",
"test": "test"
},
"files": [
"lib",
"index.js"
],
"type": "module",
"exports": {
".": "./index.js"
},
"scripts": {
"build": "npm run build:interface && npm run build:definitions",
"build:definitions": "npm run build:definitions:extract && npm run build:definitions:initial",
"build:definitions:extract": "node ./scripts/extract.js",
"build:definitions:initial": "node ./scripts/initial.js",
"build:interface": "node ./scripts/interface.js",
"lint": "eslint",
"safe-publish": "npm run build && npm run lint && npm run test && npm publish",
"test": "NODE_ENV=test node --test",
"test:inspect": "NODE_ENV=test node --watch --inspect-wait=0.0.0.0:9222",
"test:watch": "npm run test -- --watch"
},
"dependencies": {
"undici": "^7.22.0"
},
"devDependencies": {
"@cdoublev/eslint-config": "^0.12.0",
"webidl2js": "cdoublev/webidl2js",
"webref": "w3c/webref#36f97e94c9b3a8aa3891152c39669a13d2e7b352"
},
"publishConfig": {
"access": "public"
}
}