forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.29 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
{
"name": "cspell-trie",
"version": "4.1.2",
"description": "Trie Data Structure and tools to support cspell.",
"bin": "./dist/app.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"!**/*.map",
"!**/*.test.*"
],
"scripts": {
"clean": "rimraf dist",
"build": "tsc -p .",
"clean-build": "npm run clean && npm run build",
"coverage": "jest --coverage",
"test-watch": "../../node_modules/.bin/jest --watch",
"test": "jest",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell.git"
},
"keywords": [
"trie",
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-trie"
},
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
"dependencies": {
"commander": "^2.20.3",
"cspell-trie-lib": "^4.1.1",
"fs-extra": "^8.1.0",
"gensequence": "^2.1.2"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"engines": {
"node": ">=10.0.0"
}
}