-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "@harvard-lts/mirador-url-sync-plugin",
"version": "0.1.2",
"description": "Mirador plugin for Harvard mps-viewer which synchronizes the URL with the canvas ID",
"main": "dist/index.js",
"source": "src/index.js",
"module": "es/index.js",
"scripts": {
"prebuild": "rm -rf dist && rm -rf es",
"prepublishOnly": "npm run build",
"build": "parcel build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-lts/mirador-url-sync-plugin.git"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"homepage": "https://github.com/harvard-lts/mirador-url-sync-plugin#readme",
"dependencies": {
"mirador": "^3.3.0",
"redux": "^4.2.1",
"redux-saga": "^1.2.3"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.0.0",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"parcel": "^2.8.3",
"url": "^0.11.0"
}
}