forked from barbajs/barba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.94 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
{
"name": "root",
"private": true,
"devDependencies": {
"@commitlint/cli": "8.1.0",
"@commitlint/config-conventional": "8.1.0",
"@commitlint/config-lerna-scopes": "8.1.0",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.144",
"all-contributors-cli": "thierrymichel/all-contributors-cli",
"babel-eslint": "^10.0.1",
"commitizen": "4.0.3",
"commitlint-config-ccgls": "1.1.2",
"coveralls": "^3.0.3",
"cypress": "^3.2.0",
"cz-ccgls": "0.2.0",
"eslint": "^5.15.1",
"eslint-plugin-cypress": "^2.2.1",
"gzip-size": "^5.0.0",
"http-server": "^0.11.1",
"husky": "3.0.4",
"inquirer": "6.5.1",
"jest": "24.9.0",
"jest-environment-jsdom-global": "^1.1.1",
"jest-watch-lerna-packages": "^1.1.0",
"lerna": "3.16.4",
"lint-staged": "9.2.3",
"lodash": "^4.17.11",
"microbundle": "^0.12.0-next.6",
"npm-run-all": "4.1.5",
"prettier": "1.18.2",
"rimraf": "3.0.0",
"source-map-explorer": "2.0.1",
"start-server-and-test": "^1.7.11",
"ts-jest": "^24.0.0",
"tslint": "^5.13.1",
"typedoc": "0.15.0",
"typedoc-plugin-external-module-name": "^2.0.0",
"typedoc-plugin-sourcefile-url": "^1.0.4",
"typescript": "^3.3.3333",
"typescript-tslint-plugin": "0.5.4",
"wait-for-expect": "2.0.0",
"xhr-mock": "^2.4.1"
},
"license": "MIT",
"workspaces": [
"packages/*"
],
"types": "typings",
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"build:watch": "lerna run build:watch --parallel",
"clean": "rimraf docs && lerna clean",
"clear": "lerna run clear",
"commit": "npx git-cz || exit 0",
"commit-retry": "npx git-cz --retry || exit 0",
"coverage": "cat ./coverage/lcov.info | coveralls",
"doc": "typedoc packages/**/src --tsconfig typedoc.json --sourcefile-url-prefix 'https://github.com/barbajs/barba/tree/master/packages/'",
"lint": "tslint packages/**/src/**",
"ls": "lerna ls",
"prepublish": "yarn run build",
"release": "lerna publish && npm run release:next",
"release:next": "lerna run release:next --npm-client=npm",
"report": "lerna run report",
"size": "lerna run size",
"test": "npm-run-all lint build unit e2e",
"unit": "yarn jest --coverage",
"unit:ci": "yarn jest --coverage --maxWorkers=2",
"unit:watch": "yarn jest --watch --verbose false",
"e2e": "start-server-and-test cy:server :8111 cy:run",
"e2e:watch": "start-server-and-test cy:server :8111 cy:dev",
"cy:server": "http-server . -p 8111",
"cy:run": "cypress run --browser chrome --record --key 6f43f378-ecdc-4502-9635-b6f5c205429e",
"cy:dev": "cypress open",
"watch": "npm-run-all -p build:watch unit:watch"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --concurrency 1 --stream precommit",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-ccgls"
}
}
}