-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.04 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
{
"name": "@icij/datashare-plugin-sentence-case",
"version": "1.0.1",
"description": "A Datashare Plugin to add a sentence case button to the extracted text view.",
"main": "dist/index.umd.js",
"dependencies": {
"sbd": "^1.0.16",
"vue": "^3.4.29"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.5",
"axios": "^1.7.2",
"geckodriver": "^4.4.1",
"nightwatch": "^3.6.3",
"vite": "^5.3.1",
"vite-plugin-externals": "^0.6.2"
},
"private": false,
"scripts": {
"test:e2e": "nightwatch",
"test:pack": "mkdir -p ./tmp && cat \"$(npm pack)\" | tar zxvf - -C ./tmp",
"test:datashare": "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",
"prepublishOnly": "yarn build"
},
"author": "pirhoo",
"license": "ISC",
"vue": {
"filenameHashing": false
},
"files": [
"dist/{css,js}/*.{css,js,map}"
]
}