forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.62 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "cspell-tools",
"version": "4.1.2",
"description": "Tools to assist with the development of cSpell",
"typings": "dist/index.d.ts",
"bin": {
"cspell-tools": "bin.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean-build": "npm run clean && npm run build",
"clean": "rimraf dist && rimraf temp",
"lint": "tslint --project tsconfig.json",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell.git"
},
"keywords": [
"cSpell",
"Word",
"List",
"Compiler"
],
"files": [
"bin.js",
"dist/**",
"!**/*.map",
"!**/*.test.*"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-tools"
},
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
"dependencies": {
"commander": "^2.20.3",
"cspell-io": "^4.0.19",
"cspell-trie-lib": "^4.1.1",
"cspell-util-bundle": "^4.0.6",
"fs-extra": "^8.1.0",
"gensequence": "^2.1.3",
"glob": "^7.1.6",
"hunspell-reader": "^3.1.1",
"iconv-lite": "^0.4.24",
"minimatch": "^3.0.4"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"engines": {
"node": ">=10.0.0"
},
"gitHead": "437efcc5f813402c695cfce56e8af65e16459275"
}