-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.16 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
{
"license": "MIT",
"scripts": {
"postinstall": "lerna bootstrap",
"dev": "yarn yav:dev",
"test": "yarn yav:test",
"test:watch": "yarn yav:test:watch",
"test:send-coverages": "yarn coverage:codecovs && yarn coverage:coveralls && yarn coverage:codacy",
"coverage:codecovs": "codecov -t ${CODECOVS_TOKEN}",
"coverage:coveralls": "cat ./report/coverage/jest/lcov.info | coveralls",
"coverage:codacy": "cat ./report/coverage/jest/lcov.info | codacy-coverage -p . --language typescript",
"build": "lerna run build",
"docs": "vuepress build docs",
"docs:dev": "vuepress dev docs",
"clean": "npm-run-all --parallel clean:lerna clean:dist clean:deps",
"clean:lerna": "lerna clean --yes",
"clean:dist": "rimraf **/dist **/.rpt2_cache **/package-lock.json **/yarn.lock",
"clean:deps": "rimraf **/node_modules",
"format": "pretty-quick \"code/**/*.{js,ts}\" --write --staged",
"----YAVNOTIFIER----": "--------------------------------------------------------------------------------------------",
"yav:run": "cd code && npm run",
"yav:dev": "lerna run --scope @d0whc3r/yavnotifier --stream dev",
"yav:test": "lerna run --scope @d0whc3r/yavnotifier --stream test",
"yav:test:watch": "lerna run --scope @d0whc3r/yavnotifier --stream test:watch",
"yav:build": "lerna run --scope @d0whc3r/yavnotifier --stream build",
"yav:docs": "lerna run --scope @d0whc3r/yavnotifier --stream docs",
"----CI----": "--------------------------------------------------------------------------------------------------",
"clean:install": "npm ci",
"build:packages": "npm-run-all build yav:docs",
"test:packages": "yarn test",
"publish:packages": "lerna publish --yes",
"publish:packages:next": "lerna publish --dist-tag next --yes --no-progress"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"code/*.{ts,js}|!code/dist/*": [
"npm run format"
]
},
"devDependencies": {
"@babel/core": "7.5.5",
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@types/jest": "24.0.15",
"codacy-coverage": "3.4.0",
"codecov": "3.5.0",
"coveralls": "3.0.5",
"dts-bundle-generator": "3.1.0",
"gh-pages": "2.0.1",
"husky": "3.0.1",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"jest-junit": "6.4.0",
"jest-sonar-reporter": "2.0.0",
"lerna": "3.16.1",
"lint-staged": "9.2.0",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"pretty-quick": "1.11.1",
"rimraf": "2.6.3",
"rollup": "1.17.0",
"rollup-plugin-commonjs": "10.0.1",
"rollup-plugin-execute": "1.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-multi-entry": "2.1.0",
"rollup-plugin-node-builtins": "2.1.2",
"rollup-plugin-node-globals": "1.4.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "5.1.1",
"rollup-plugin-typescript2": "0.22.0",
"sonar-scanner": "3.1.0",
"ts-jest": "24.0.2",
"tslint": "5.18.0",
"typedoc": "0.14.2",
"typedoc-plugin-markdown": "2.0.10",
"typescript": "3.5.3",
"vuepress": "1.0.2"
}
}