-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.44 KB
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
{
"name": "optimize-ab-selector",
"version": "0.5.2",
"description": "This is a chrome extension, allows you to select a variants of the Google Optimize.",
"engines": {
"node": "14.x"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"dev": "webpack --config webpack.dev.js",
"watch": "webpack -w --config webpack.dev.js",
"zip": "find . -name \".DS_Store\" -delete; cd dist; zip -r ../build/build-$(node -p -e \"require('../package.json').version\").zip ./",
"bump": "mversion p -m",
"bump:i": "mversion i -m",
"test": "jest --coverage",
"test:w": "jest --watch --coverage"
},
"author": "Yujiro Takeda",
"license": "MIT",
"devDependencies": {
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^12.1.4",
"@types/chrome": "0.0.146",
"@types/jest": "^27.4.1",
"@types/react": "^16.14.11",
"@types/react-dom": "^16.9.14",
"css-loader": "^3.6.0",
"jest": "^27.5.1",
"mversion": "^2.0.1",
"node-sass": "^7.0.0",
"sass-loader": "^6.0.7",
"set-value": ">=4.0.1",
"style-loader": "^0.20.3",
"terser-webpack-plugin": "^5.1.4",
"ts-jest": "^27.1.3",
"ts-loader": "^4.0.1",
"typescript": "^4.5.3",
"webpack": "^5.47.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"classnames": "^2.3.1",
"copy-webpack-plugin": "^6.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2"
}
}