This repository has been archived by the owner on Jul 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.08 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
76
77
78
79
80
81
82
83
84
85
{
"name": "cspell-trie",
"version": "3.0.7",
"description": "Trie Data Structure and tools to support cspell.",
"bin": "./dist/app.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"src/**",
"!**/*.test.*"
],
"scripts": {
"clean": "rimraf dist/**",
"test": "mocha --recursive \"./dist/**/*.test.js\"",
"test-watch": "mocha --watch --require ts-node/register --recursive \"src/**/*.test.ts\"",
"build": "tsc",
"clean-build": "npm run clean ; npm run build",
"coverage": "NODE_ENV=test nyc npm run test-ts",
"test-ts": "NODE_ENV=test mocha --require ts-node/register --recursive --bail \"src/**/*.test.ts\"",
"coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"travis-coverage": "npm run coverage && npm run coverage-coveralls",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jason3S/cspell-trie.git"
},
"keywords": [
"trie",
"cspell"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jason3S/cspell-trie/issues"
},
"homepage": "https://github.com/Jason3S/cspell-trie#readme",
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.12.18",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"cspell-dict-en_us": "^1.2.8",
"cspell-dict-es-es": "^1.0.8",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.1"
},
"dependencies": {
"commander": "^2.18.0",
"cspell-lib": "^3.0.4",
"fs-extra": "^7.0.0",
"gensequence": "^2.1.1",
"hunspell-reader": "^2.0.4",
"js-xxhash": "^1.0.1",
"rxjs": "^6.3.3",
"rxjs-stream": "^3.0.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"engines": {
"node": ">=8.0.0"
}
}