forked from adobe/react-webcomponent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.21 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
{
"name": "@adobe/react-webcomponent",
"version": "0.1.3",
"author": "Adobe",
"license": "Apache-2.0",
"scripts": {
"build": "webpack --mode production",
"test": "npm run karma -- --single-run",
"karma": "node_modules/karma/bin/karma start",
"prepublish": "npm run test && npm run build"
},
"files": [
"dist/index.js"
],
"main": "dist/index.js",
"peerDependencies": {
"react": ">=14.2.0",
"react-dom": ">=14.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"chai": "^4.2.0",
"html-loader": "^1.1.0",
"karma": "^5.0.0",
"karma-chai-sinon": "^0.1.5",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.2",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.0-beta.0",
"mocha": "^7.1.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
}
}