-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
85 lines (85 loc) · 2.25 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
{
"name": "rollup-plugin-data-qa",
"version": "1.0.15",
"repository": {
"type": "git",
"url": "https://github.com/wongnai/rollup-plugin-data-qa.git"
},
"type": "module",
"author": "LINE MAN Wongnai Frontend Team",
"homepage": "https://github.com/wongnai/rollup-plugin-data-qa#readme",
"license": "MIT",
"deploy": "dist",
"keywords": [
"rollup",
"rollup plugin",
"react",
"styled-component",
"e2e",
"data-qa"
],
"main": "./index.cjs",
"module": "./index.js",
"types": "./index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.cjs",
"default": "./index.js"
}
},
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext .tsx,.ts src",
"lint:fix": "eslint --ext .tsx,.ts --fix src",
"test": "jest",
"type-check": "tsc --noEmit",
"build": "rollup -c",
"release": "yarn build && HUSKY=0 semantic-release",
"postversion": "cp package.json .."
},
"dependencies": {
"@rollup/pluginutils": "5.0.2",
"change-case": "4.1.2",
"estree-walker": "2.0.2",
"lodash": "4.17.21",
"magic-string": "0.27.0"
},
"devDependencies": {
"@optimize-lodash/rollup-plugin": "4.0.1",
"@rollup/plugin-commonjs": "21.0.0",
"@rollup/plugin-node-resolve": "13.0.0",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/commit-analyzer": "8.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/npm": "7.1.3",
"@testing-library/jest-dom": "5.16.4",
"@types/jest": "27.0.2",
"@types/jsdom": "16.2.10",
"@types/lodash": "4.14.191",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"@zerollup/ts-transform-paths": "1.7.18",
"eslint": "7.28.0",
"husky": "8.0.1",
"jest": "27.3.1",
"jest-transform-stub": "2.0.0",
"lint-staged": "10.3.0",
"prettier": "2.3.1",
"rollup": "2.58.0",
"rollup-plugin-cleaner": "1.0.0",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-terser": "7.0.2",
"rollup-plugin-ts": "3.4.5",
"semantic-release": "21.0.0",
"ts-jest": "27.0.7",
"ttypescript": "1.5.15",
"typescript": "4.7.3"
},
"peerDependencies": {
"jest": ">=27.3.1"
},
"engines": {
"node": ">=18"
}
}