-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 919 Bytes
/
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
{
"name": "extension-testing-example",
"version": "1.0",
"description": "Example extension on how to unit test browser extensions",
"scripts": {
"start": "webpack --config webpack.config.js",
"test": "jest",
"test:watch": "jest --watch"
},
"license": "MIT",
"devDependencies": {
"babel-jest": "^23.4.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-react-jsx": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.5.1",
"html-loader": "^0.5.5",
"jest": "^23.5.0",
"preact-compat": "^3.18.2",
"preact-render-to-string": "^3.8.1",
"preact-test-utils": "^0.1.3",
"preact-testing-library": "^0.2.1",
"sinon-chrome": "^2.3.2",
"webpack": "^4.0.0",
"webpack-cli": "^2.0.14"
},
"dependencies": {
"preact": "^8.3.1"
}
}