forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.26 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
{
"name": "@cspell/dict-css",
"version": "4.1.2",
"description": "CSS dictionary for cspell.",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"cspell",
"css",
"dictionary",
"spelling"
],
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/css#readme",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/css"
},
"license": "MIT",
"author": "Street Side Software <support@streetsidesoftware.nl>",
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"files": [
"dict/css.txt",
"cspell-ext.json"
],
"scripts": {
"build": "cspell-tools-cli compile --keep-raw-case src/css.txt --no-compress -o ./dict",
"prepare:dictionary": "pnpm run build",
"prepublishOnly": "echo pre-publish",
"test": "pnpm run test:keywords && pnpm run test:samples",
"test:keywords": "shx head -n 100 src/css.txt | cspell -c ./cspell-ext.json \"--locale=*\" \"--languageId=css\" stdin",
"test:samples": "cspell samples"
}
}