-
-
Notifications
You must be signed in to change notification settings - Fork 213
/
Copy pathpackage.json
54 lines (54 loc) · 1.69 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
{
"name": "@cspell/dict-public-licenses",
"version": "2.0.13",
"description": "Common Public Licenses dictionary for cspell.",
"private": false,
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "pnpm run generate && pnpm run compile",
"generate": "node ./src/extract.js",
"checksum": "cspell-tools-cli shasum -c checksum.txt",
"compile": "cspell-tools-cli build",
"conditional-build": "pnpm run --silent checksum || pnpm run build && pnpm run gen-checksum",
"test-dict": "cspell -c ./cspell-ext.json --locale=en --languageId=* --file-list source-files.txt",
"gen-checksum": "cspell-tools-cli shasum -u checksum.txt --list-file source-files.txt source-dependencies.txt",
"test": "pnpm run test-dict",
"prepublishOnly": "echo pre-publish",
"prepare:dictionary": "pnpm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/streetsidesoftware/cspell-dicts",
"directory": "dictionaries/public-licenses"
},
"keywords": [
"cspell",
"public-licenses",
"Common Public Licenses",
"dictionary",
"spelling"
],
"author": "Street Side Software <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell-dicts/blob/main/dictionaries/public-licenses#readme",
"devDependencies": {
"spdx-license-ids": "^3.0.21"
},
"files": [
"public-licenses.txt.gz",
"cspell-ext.json",
"*.js",
"*.d.ts"
]
}