-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1014 Bytes
/
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
{
"name": "@rmenke/css-tokenizer-tests",
"version": "1.2.0",
"description": "Tests for CSS Tokenizers",
"main": "index.cjs",
"module": "index.mjs",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.cjs",
"default": "./index.mjs"
}
},
"publishConfig": {
"access": "public"
},
"files": [
"CHANGELOG.md",
"README.md",
"index.mjs",
"index.cjs"
],
"scripts": {
"build": "node ./build-package-content.mjs",
"fuzz": "node ./fuzz.mjs",
"test": "node ./run-tests.mjs",
"test:debug": "DEBUG=true node ./run-tests.mjs"
},
"author": "Romain Menke",
"license": "MIT",
"devDependencies": {
"@adguard/css-tokenizer": "^1.0.0",
"@cdoublev/css": "github:cdoublev/css",
"@csstools/css-tokenizer": "^3.0.0",
"@csstools/tokenizer": "^3.1.0",
"css-tree": "^3.0.0",
"csslex": "^1.0.4",
"parse-css": "github:tabatkins/parse-css",
"postcss": "^8.4.20"
},
"volta": {
"node": "23.1.0"
}
}