@cspell/dict-npm 5.0.12 → 5.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dict/npm.txt +6 -0
- package/package.json +2 -2
- package/README.md +0 -53
- package/dict/README.md +0 -3
package/dict/npm.txt
CHANGED
|
@@ -151,6 +151,7 @@ eslintcache
|
|
|
151
151
|
eslintignore
|
|
152
152
|
eslintrc
|
|
153
153
|
esprima
|
|
154
|
+
estree
|
|
154
155
|
event-stream
|
|
155
156
|
eventemitter2
|
|
156
157
|
events
|
|
@@ -512,8 +513,13 @@ normalize
|
|
|
512
513
|
npm
|
|
513
514
|
npm-check
|
|
514
515
|
npm-check-updates
|
|
516
|
+
npm-package-json-lint
|
|
515
517
|
npm-run-all
|
|
516
518
|
npm-windows-upgrade
|
|
519
|
+
npmcli
|
|
520
|
+
npmpackagejsonlint
|
|
521
|
+
npmpackagejsonlintignore
|
|
522
|
+
npmpackagejsonlintrc
|
|
517
523
|
nsp
|
|
518
524
|
numeral
|
|
519
525
|
nunjucks
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-npm",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.14",
|
|
4
4
|
"description": "Dictionary of common NPM packages for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"dict/npm.txt",
|
|
38
38
|
"cspell-ext.json"
|
|
39
39
|
],
|
|
40
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "17c0ffd3b12cb9d826827fc3a545d07df7aa4408"
|
|
41
41
|
}
|
package/README.md
DELETED
|
@@ -1,53 +0,0 @@
|
|
|
1
|
-
# CSpell NPM Dictionary
|
|
2
|
-
|
|
3
|
-
This dictionary contains a list of popular JavaScript packages found on [npmjs.com](https://www.npmjs.com/).
|
|
4
|
-
|
|
5
|
-
This is a pre-built dictionary for use with CSpell.
|
|
6
|
-
|
|
7
|
-
## Requirements
|
|
8
|
-
|
|
9
|
-
| Tool | Version |
|
|
10
|
-
| ------------------------------------------------------------------------------------------------------------------------------------ | ------- |
|
|
11
|
-
| [cspell](https://github.com/streetsidesoftware/cspell) | `>= 6` |
|
|
12
|
-
| [Code Spell Checker - Visual Studio Code](https://marketplace.visualstudio.com/items?itemName=streetsidesoftware.code-spell-checker) | `>= 2` |
|
|
13
|
-
|
|
14
|
-
## Installation
|
|
15
|
-
|
|
16
|
-
Global Install and add to CSpell global settings.
|
|
17
|
-
|
|
18
|
-
```sh
|
|
19
|
-
npm install -g @cspell/dict-npm
|
|
20
|
-
cspell link add @cspell/dict-npm
|
|
21
|
-
```
|
|
22
|
-
|
|
23
|
-
## Uninstall from CSpell
|
|
24
|
-
|
|
25
|
-
```sh
|
|
26
|
-
cspell link remove @cspell/dict-npm
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## Manual Installation
|
|
30
|
-
|
|
31
|
-
The `cspell-ext.json` file in this package should be added to the import section in your cspell.json file.
|
|
32
|
-
|
|
33
|
-
```javascript
|
|
34
|
-
{
|
|
35
|
-
// …
|
|
36
|
-
"import": ["@cspell/dict-npm/cspell-ext.json"],
|
|
37
|
-
// …
|
|
38
|
-
}
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
# Dictionary Development
|
|
42
|
-
|
|
43
|
-
See: [How to Create a New Dictionary](https://github.com/streetsidesoftware/cspell-dicts#how-to-create-a-new-dictionary)
|
|
44
|
-
|
|
45
|
-
## License
|
|
46
|
-
|
|
47
|
-
MIT
|
|
48
|
-
|
|
49
|
-
> Some packages may have other licenses included.
|
|
50
|
-
|
|
51
|
-
<!---
|
|
52
|
-
cspell:ignore npmjs
|
|
53
|
-
--->
|
package/dict/README.md
DELETED