-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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": "@project-sunbird/sunbird-file-upload-library",
"version": "1.0.4",
"description": "",
"source": "lib/index.js",
"main": "dist/main.js",
"type": "module",
"scripts": {
"test": "karma start karma.conf.cjs",
"build": "webpack",
"watch": "webpack --watch",
"pre-publish": "npm run build && cp package.json ./dist/package.json"
},
"keywords": [
"sunbird",
"file-upload",
"library"
],
"author": "sunbird",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/preset-react": "^7.22.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^9.1.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"jasmine": "^5.1.0",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-webpack": "^5.0.0",
"puppeteer": "^21.3.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"axios": "^1.4.0"
}
}