-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 1.98 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
{
"name": "pica-editor",
"version": "0.6.1",
"description": "Vue component to display and edit PICA records",
"main": "dist/pica-editor.js",
"unpkg": "dist/pica-editor.js",
"module": "dist/pica-editor.esm.js",
"browser": "src/PicaEditor.vue",
"files": [
"src",
"dist"
],
"scripts": {
"lint": "eslint --fix './{src,example,build}/**/*.{vue,js}'",
"test": "rm -rf ./coverage && mocha --recursive",
"dev": "vite --config example/vite.config.js",
"build": "rm -rf dist; npm run build:esm && npm run build:umd",
"build:esm": "rollup --config ./build/rollup.config.js --format es --file dist/pica-editor.esm.js",
"build:umd": "rollup --config ./build/rollup.config.js --format umd --file dist/pica-editor.js",
"release": "npm run build && npm test && ./build/release.sh $SEMVER",
"release:patch": "SEMVER=patch npm run release",
"release:minor": "SEMVER=minor npm run release",
"release:major": "SEMVER=major npm run release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gbv/pica-editor.git"
},
"keywords": [
"code4lib",
"pica",
"vue"
],
"author": "Jakob Voß",
"license": "MIT",
"homepage": "https://github.com/gbv/pica-editor#readme",
"bugs": {
"url": "https://github.com/gbv/pica-editor/issues"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.1.0",
"@vitejs/plugin-vue": "^1.1.0",
"@vue/compiler-sfc": "^3.0.5",
"eslint": "^7.18.0",
"eslint-config-gbv": "^1.0.1",
"eslint-plugin-vue": "^7.4.1",
"mocha": "^8.2.1",
"mocha-eslint": "^7.0.0",
"pre-commit": "^1.2.2",
"rollup": "^2.28.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-vue": "^6.0.0",
"vite": "^2.0.0-beta.35"
},
"dependencies": {
"codemirror": "^5.59.2",
"pica-data": "^0.3.2",
"vue": "^3.0.5"
}
}