forked from streetsidesoftware/cspell-dicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.63 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
{
"name": "@cspell/dict-public-licenses",
"version": "1.0.6",
"description": "Common Public Licenses dictionary for cspell.",
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": "./cspell-ext.json",
"./cspell": "./cspell-ext.json",
"./cspell-ext.json": "./cspell-ext.json"
},
"scripts": {
"build": "yarn run generate && yarn run compile",
"generate": "node ./src/extract.js",
"checksum": "shasum -c checksum.txt",
"compile": "cat source-files.txt | xargs cspell-tools-cli compile --merge public-licenses -o .",
"conditional-build": "yarn run --silent checksum || yarn run build && yarn run gen-checksum",
"test-dict": "cat source-files.txt | xargs cat | cspell -v -c ./cspell-ext.json --local=en --languageId=* stdin",
"gen-checksum": "cat source-files.txt source-dependencies.txt | sort -u | xargs shasum > checksum.txt",
"test": "yarn run test-dict",
"prepublishOnly": "echo pre-publish",
"prepare": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell-dicts.git"
},
"keywords": [
"cspell",
"public-licenses",
"Common Public Licenses",
"dictionary",
"spelling"
],
"author": "Jason Dent",
"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.12"
},
"files": [
"public-licenses.txt.gz",
"cspell-ext.json",
"*.js",
"*.d.ts"
]
}