forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.3 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
{
"name": "cspell-io",
"version": "4.0.19",
"description": "A library of useful I/O functions used across various cspell tools.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist/**",
"!**/*.map",
"!**/*.test.*",
"!**/temp/**"
],
"scripts": {
"build": "tsc -p .",
"watch": "tsc -p . -w",
"clean": "rimraf dist",
"clean-build": "npm run clean && npm run build",
"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"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/labels/cspell-io"
},
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
"dependencies": {
"iconv-lite": "^0.4.24",
"iterable-to-stream": "^1.0.1"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"exclude": [
"src/**/*.test.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"engines": {
"node": ">=10.0.0"
},
"gitHead": "437efcc5f813402c695cfce56e8af65e16459275"
}