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
/
package.json
74 lines (74 loc) · 1.89 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
{
"name": "cspell-tools",
"version": "3.0.5",
"description": "Tools to assist with the development of cSpell",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"bin": {
"cspell-tools": "./dist/app.js"
},
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "rimraf dist ; rimraf temp",
"lint": "tslint --project tsconfig.json",
"test-ts": "NODE_ENV=test mocha --require ts-node/register --recursive --bail \"src/**/*.test.ts\"",
"test-watch": "npm run build && mocha --require ts-node/register --watch --recursive \"src/**/*.test.ts\"",
"test": "mocha --recursive ./dist/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Jason3S/cSpell-Tools.git"
},
"keywords": [
"cSpell",
"Word",
"List",
"Compiler"
],
"files": [
"dist/**",
"src/**",
"!**/*.test.*"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/Jason3S/cSpell-Tools/issues"
},
"homepage": "https://github.com/Jason3S/cSpell-Tools#readme",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/fs-extra": "^5.0.4",
"@types/glob": "^7.1.1",
"@types/lorem-ipsum": "^1.0.2",
"@types/minimatch": "^3.0.3",
"@types/mocha": "^5.2.5",
"@types/node": "^8.10.39",
"@types/xregexp": "^3.0.29",
"chai": "^4.2.0",
"lorem-ipsum": "^1.0.6",
"mocha": "^5.2.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"typescript": "^3.3.1"
},
"dependencies": {
"commander": "^2.19.0",
"cspell-lib": "^3.0.5",
"cspell-trie": "^3.0.7",
"fs-extra": "^7.0.1",
"gensequence": "^2.1.2",
"glob": "^7.1.3",
"hunspell-reader": "^2.1.1",
"iconv-lite": "^0.4.24",
"minimatch": "^3.0.4",
"rxjs": "^6.4.0",
"rxjs-stream": "^3.0.1",
"xregexp": "^4.2.4"
},
"engines": {
"node": ">=8.0.0"
}
}