-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "taro-test-utils",
"version": "0.1.1",
"description": "",
"main": "index.js",
"private": true,
"scripts": {
"lint": "eslint packages/**/src/ --ext .js --ext .ts --ext .tsx",
"dev": "pnpm -r --filter=./packages/* run dev",
"build": "pnpm -r --filter=./packages/* run build",
"clear-all": "rimraf **/node_modules",
"version": "run-s version:*",
"version:release": "pnpm --parallel -r --aggregate-output --filter=./packages/* exec npm version ${npm_package_version}",
"version:git": "git add . && git commit -m \"chore(release): publish ${npm_package_version} --tag=beta\"",
"test": "pnpm -r --filter=./tests/* run test"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.json": [
"prettier --write"
]
},
"bugs": {
"url": "https://github.com/NervJS/taro-test-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NervJS/taro-test-utils.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@jest/types": "^29.5.0",
"@rollup/plugin-babel": "^6.0.2",
"@rollup/plugin-typescript": "^9.0.2",
"@types/babel__core": "^7.1.19",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.18.0",
"@types/jest": "^29.2.3",
"@types/node": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"concurrently": "^8.0.1",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.2",
"prettier": "2.7.1",
"rimraf": "^5.0.0",
"rollup": "^3.2.3",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.4.1",
"typescript": "^4.8.4"
}
}