-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
67 lines (67 loc) · 2.16 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
{
"name": "react-vui-fileviewer",
"version": "3.0.0",
"description": "React component for viewing files",
"main": "src/fileViewer.js",
"scripts": {
"prebuild-sample": "rimraf ./sample/dist && mkdirp ./sample/dist",
"build-sample": "npm run build-sample:js && npm run build-sample:css",
"build-sample:js": "webpack --env=dev --progress --profile --color",
"build-sample:css": "sass -I node_modules -I ./ ./sample/app.scss ./sample/dist/app.css",
"build-sample:watch": "npm run build-sample:css && webpack-dev-server --env=dev --progress --profile --color --hot",
"lint": "eslint src",
"postinstall": "bower install",
"serve": "webpack-dev-server --env=dev --progress --profile --color",
"serve:watch": "webpack-dev-server --env=dev --progress --profile --color --hot",
"pretest:unit": "rimraf coverage",
"test:unit": "jest --coverage",
"test": "npm run lint && npm run test:unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Brightspace/react-valence-ui-fileviewer.git"
},
"keywords": [
"d2l",
"valence-ui",
"vui",
"fileviewer"
],
"author": "D2L Corporation",
"license": "Apache-2.0",
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"bower": "^1.6.5",
"d2l-intl": "^0.2.1",
"react-frau-intl": "^0.2.0",
"react-valence-ui-iframe": "github:Brightspace/react-valence-ui-iframe#semver:^4",
"url-parse": "^1.0.5"
},
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"babel-plugin-rewire": "^1.0.0-rc-3",
"es6-promise": "^3.2.1",
"eslint": "^2.3.0",
"eslint-config-brightspace": "^0.2.1",
"eslint-plugin-react": "^3.5.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mkdirp": "^0.5.1",
"onchange": "^2.0.0",
"parallelshell": "^2.0.0",
"puppeteer": "^21.3.8",
"rimraf": "^2.4.3",
"sass": "^1.69.0",
"sinon": "^1.17.2",
"sinon-as-promised": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"private": true
}