-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.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
{
"name": "datashare-plugin-tour",
"description": "A Datashare plugin to build a tour guide",
"version": "1.0.0",
"main": "dist/index.umd.js",
"module": "dist/index.mjs",
"style": "dist/style.css",
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"geckodriver": "^4.4.1",
"nightwatch": "^3.6.3",
"vite": "^5.3.1",
"vite-plugin-externals": "^0.6.2"
},
"private": false,
"datashare": {},
"scripts": {
"test:e2e": "nightwatch",
"test:pack": "mkdir -p ./tmp && cat \"$(npm pack)\" | tar zxvf - -C ./tmp",
"test:datashare": "DS_DOCKER_MULTIPLE_PROJECTS=true datashare --tcpListenPort 8008 --pluginsDir=$(pwd)/tmp",
"test:clean": "rm *.tgz || /bin/true",
"test": "yarn test:e2e",
"pretest": "yarn build && yarn test:pack",
"posttest": "yarn test:clean",
"build": "npx vite build --mode production",
"prepublishOnly": "yarn build"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
}
},
"author": "ICIJ <[email protected]>",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"lodash": "^4.17.21",
"vue": "^3.4.29"
}
}