forked from streetsidesoftware/cspell
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.56 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
86
87
88
89
90
91
92
93
94
95
{
"name": "cspell-monorepo",
"version": "1.0.0",
"description": "cspell monorepo.",
"main": "bin.js",
"private": true,
"scripts": {
"build": "lerna run build",
"build-schema": "lerna run build-schema",
"check-spelling": "cspell **/{*.ts,*.md}",
"clean-build": "lerna run clean-build",
"clean": "lerna run clean",
"coverage": "npm run gen-coverage",
"gen-coverage": "lerna run coverage",
"install": "lerna bootstrap --ci",
"lint-travis": "lerna run lint-travis",
"prepare": "npm run clean-build",
"pub": "npm install && npm test && lerna publish",
"test-spec": "lerna run test-spec",
"test-ts": "lerna run test-ts",
"test-watch": "lerna run --parallel test-watch",
"travis-coverage": "npm run gen-coverage && globcat packages/*/coverage/lcov.info | coveralls",
"test": "lerna run test && ajv -s ./cspell.schema.json -d cspell.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/streetsidesoftware/cspell.git"
},
"keywords": [
"spelling",
"code",
"CI/CD"
],
"author": "Jason Dent",
"license": "MIT",
"bugs": {
"url": "https://github.com/streetsidesoftware/cspell/issues"
},
"homepage": "https://github.com/streetsidesoftware/cspell#readme",
"devDependencies": {
"@types/chai": "^4.2.5",
"@types/comment-json": "^1.1.1",
"@types/configstore": "^4.0.0",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^24.0.23",
"@types/lorem-ipsum": "^1.0.2",
"@types/micromatch": "^3.1.1",
"@types/minimatch": "^3.0.3",
"@types/node": "^10.17.5",
"@types/xregexp": "^3.0.30",
"ajv-cli": "^3.0.0",
"chai": "^4.2.0",
"coveralls": "^3.0.7",
"cspell": "^4.0.34",
"cspell-dict-en_us": "^1.2.20",
"cspell-dict-es-es": "^1.0.14",
"cspell-dict-nl-nl": "^1.0.19",
"cspell-tools": "file:packages/cspell-tools",
"fs-extra": "^8.1.0",
"globcat": "^1.1.3",
"jest": "^24.9.0",
"lerna": "^3.18.4",
"lorem-ipsum": "^1.0.6",
"rimraf": "^3.0.0",
"source-map-support": "^0.5.16",
"ts-jest": "^24.1.0",
"ts-json-schema-generator": "^0.55.0",
"ts-loader": "^6.2.1",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"nyc": {
"include": [
"**/src/**/*.ts"
],
"exclude": [
"**/src/**/*.test.ts",
"**/src/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"json",
"html"
]
},
"dependencies": {}
}