-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "tees-monorepo",
"version": "1.0.0",
"description": "Universal test framework for front-end",
"main": "index.js",
"scripts": {
"test": "yarn test:ut && yarn test:it",
"test:it": "cd packages/tees-integration && yarn test",
"test:ut": "cross-env NODE_ENV=development jest --config ./scripts/jest/config.js",
"watch": "yarn test --watch",
"lint": "node ./scripts/eslint.js",
"build": "node ./scripts/build.js",
"prettier": "node ./scripts/prettier.js",
"commit": "git-cz",
"lerna:version": "lerna version prerelease --force-publish --amend --no-git-tag-version --yes && git add .",
"lerna:postversion": "chan release --group-changes $(node -p -e \"require('./lerna.json').version\") && git add CHANGELOG.md && git commit -m \"Update: changelog\" && git push",
"lerna:publish": "lerna publish from-git --yes --npm-client yarn --npm-tag latest"
},
"private": true,
"devEngines": {
"node": "8.x || 9.x || 10.x"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/unadlib/tees.git"
},
"keywords": [
"e2e",
"test",
"test framework"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/unadlib/tees/issues"
},
"homepage": "https://github.com/unadlib/tees#readme",
"devDependencies": {
"@geut/chan": "^1.3.0",
"commitizen": "^3.0.5",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"jest": "^24.8.0",
"lerna": "^3.13.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}