@cspell/dict-npm 5.0.15 → 5.0.17
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 +13 -0
- package/package.json +6 -5
package/dict/npm.txt
CHANGED
|
@@ -11,6 +11,7 @@ amqplib
|
|
|
11
11
|
angular
|
|
12
12
|
angular-cli
|
|
13
13
|
angular-material
|
|
14
|
+
antfu
|
|
14
15
|
apn
|
|
15
16
|
applicationinsights
|
|
16
17
|
archiver
|
|
@@ -150,6 +151,7 @@ eslint-config-airbnb
|
|
|
150
151
|
eslintcache
|
|
151
152
|
eslintignore
|
|
152
153
|
eslintrc
|
|
154
|
+
espree
|
|
153
155
|
esprima
|
|
154
156
|
estree
|
|
155
157
|
event-stream
|
|
@@ -407,6 +409,7 @@ kucherenko
|
|
|
407
409
|
kue
|
|
408
410
|
lab
|
|
409
411
|
lazy
|
|
412
|
+
leftpad
|
|
410
413
|
lerna
|
|
411
414
|
less
|
|
412
415
|
level
|
|
@@ -444,6 +447,7 @@ memory-cache
|
|
|
444
447
|
memwatch
|
|
445
448
|
meow
|
|
446
449
|
merge-stream
|
|
450
|
+
messageids
|
|
447
451
|
meteor
|
|
448
452
|
method-override
|
|
449
453
|
mime
|
|
@@ -452,6 +456,7 @@ minimatch
|
|
|
452
456
|
minimist
|
|
453
457
|
mkcert
|
|
454
458
|
mkdirp
|
|
459
|
+
mlly
|
|
455
460
|
mobx
|
|
456
461
|
mocha
|
|
457
462
|
moment
|
|
@@ -537,9 +542,11 @@ opencv
|
|
|
537
542
|
openweather
|
|
538
543
|
opn
|
|
539
544
|
optimist
|
|
545
|
+
optionator
|
|
540
546
|
ora
|
|
541
547
|
orchestrator
|
|
542
548
|
orm
|
|
549
|
+
ovsx
|
|
543
550
|
pageres
|
|
544
551
|
pagy
|
|
545
552
|
parallelshell
|
|
@@ -607,6 +614,7 @@ restify
|
|
|
607
614
|
rethinkdb
|
|
608
615
|
retry
|
|
609
616
|
rewire
|
|
617
|
+
rfdc
|
|
610
618
|
rimraf
|
|
611
619
|
robotjs
|
|
612
620
|
rollup
|
|
@@ -633,7 +641,9 @@ shelljs
|
|
|
633
641
|
shortid
|
|
634
642
|
should
|
|
635
643
|
sinon
|
|
644
|
+
sinonjs
|
|
636
645
|
sinopia
|
|
646
|
+
sirv
|
|
637
647
|
slow-deps
|
|
638
648
|
slug
|
|
639
649
|
soap
|
|
@@ -662,6 +672,7 @@ supervisor
|
|
|
662
672
|
svelte
|
|
663
673
|
sveltejs
|
|
664
674
|
sveltekit
|
|
675
|
+
sveltestack
|
|
665
676
|
svgo
|
|
666
677
|
swig
|
|
667
678
|
tailwind
|
|
@@ -677,6 +688,8 @@ through
|
|
|
677
688
|
through2
|
|
678
689
|
thunkify
|
|
679
690
|
time-grunt
|
|
691
|
+
tinypool
|
|
692
|
+
tinyspy
|
|
680
693
|
tmp
|
|
681
694
|
trpc
|
|
682
695
|
trumpet
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cspell/dict-npm",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.17",
|
|
4
4
|
"description": "Dictionary of common NPM packages for cspell.",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -12,13 +12,14 @@
|
|
|
12
12
|
},
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "cspell-tools-cli compile --split \"src/npm.txt\" --no-compress -o ./dict -m npm",
|
|
15
|
-
"test": "shx head -n 100 \"src/npm.txt\" | cspell -
|
|
15
|
+
"test": "shx head -n 100 \"src/npm.txt\" | cspell -c ./cspell-ext.json \"--locale=*\" \"--languageId=javascript\" stdin",
|
|
16
16
|
"prepublishOnly": "echo pre-publish",
|
|
17
17
|
"prepare:dictionary": "pnpm run build"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "
|
|
21
|
+
"url": "https://github.com/streetsidesoftware/cspell-dict.git",
|
|
22
|
+
"directory": "dictionaries/npm"
|
|
22
23
|
},
|
|
23
24
|
"keywords": [
|
|
24
25
|
"cspell",
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"dictionary",
|
|
28
29
|
"spelling"
|
|
29
30
|
],
|
|
30
|
-
"author": "
|
|
31
|
+
"author": "Street Side Software <support@streetsidesoftware.nl>",
|
|
31
32
|
"license": "MIT",
|
|
32
33
|
"bugs": {
|
|
33
34
|
"url": "https://github.com/streetsidesoftware/cspell-dicts/issues"
|
|
@@ -37,5 +38,5 @@
|
|
|
37
38
|
"dict/npm.txt",
|
|
38
39
|
"cspell-ext.json"
|
|
39
40
|
],
|
|
40
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "8e07e04372269f460f7eae0d5b60327804191ff8"
|
|
41
42
|
}
|