forked from kucherenko/jscpd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.5 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
{
"name": "jscpd-monorepo",
"private": true,
"npmClient": "yarn",
"useWorkspaces": true,
"version": "3.3.0-rc.0",
"scripts": {
"commit": "npx git-cz",
"bootstrap": "lerna bootstrap",
"postinstall": "yarn bootstrap",
"clean": "lerna run clean",
"build": "lerna run build",
"pub": "lerna publish",
"test": "nyc yarn run test:unit",
"test:unit": "mocha -r source-map-support/register -r ts-node/register packages/*/__tests__/**/*.test.ts",
"coverage": "run-s build test cov:html cov:check",
"lint": "eslint --cache --ext .ts packages/*/src",
"cov": "run-s build test cov:html && open coverage/lcov-report/index.html",
"cov:html": "nyc report --reporter=lcov",
"cov:check": "nyc report && nyc check-coverage --lines 90 --functions 90 --branches 77",
"doc": "run-s doc:html && open docs/index.html",
"doc:html": "typedoc --out ./docs ./packages",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"reset": "git clean -dfx && git reset --hard && yarn",
"all": "run-s reset test cov:check doc:html",
"snyk-protect": "snyk protect",
"prepare": "yarn run snyk-protect",
"changelog": "lerna-changelog"
},
"nyc": {
"reporter": [
"lcov"
],
"include": [
"packages/*/src/**/*.ts"
],
"exclude": [
"packages/examples/**"
],
"extends": "@istanbuljs/nyc-config-typescript",
"all": true
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kucherenko/jscpd.git"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"chai": "^4.2.0",
"conventional-changelog-cli": "^2.0.31",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-plugin-sonarjs": "^0.5.0",
"gh-pages": "^2.2.0",
"git-cz": "^4.3.1",
"lerna": "^3.20.2",
"lerna-changelog": "^1.0.1",
"mocha": "^7.1.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"open-cli": "^5.0.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.2",
"snyk": "^1.314.0",
"source-map-support": "^0.5.19",
"typedoc": "~0.17.6",
"typedoc-plugin-lerna-packages": "~0.3.0",
"typescript": "^3.8.3"
},
"workspaces": [
"packages/*"
],
"readmeFilename": "README.md",
"snyk": true,
"dependencies": {
"codecov": "^3.7.2"
}
}