-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
54 lines (54 loc) · 2.3 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
{
"name": "@iiif/iiif-metadata-component",
"version": "1.1.19",
"description": "",
"main": "./dist-commonjs/index.js",
"module": "./dist-esmodule/index.js",
"browser": "./dist-umd/IIIFMetadataComponent.js",
"types": "./types/index.d.ts",
"scripts": {
"build:css": "cross-env mkdir dist-css && npx lessc ./src/css/styles.less > ./dist-css/styles.css && cross-env cp ./dist-css/styles.css ./dist-css/styles.less",
"build:commonjs": "tsc",
"build:docs": "rimraf -rf docs && typedoc --out docs --name IIIFMetadataComponent --theme default --ignoreCompilerErrors --experimentalDecorators --emitDecoratorMetadata --target ES6 --moduleResolution node --preserveConstEnums --stripInternal --suppressExcessPropertyErrors --module commonjs src/ && touch docs/.nojekyll",
"build:esmodule": "tsc -m es6 --outDir dist-esmodule",
"build:types": "dts-bundle-generator --umd-module-name IIIFMetadataComponent -o types/index.d.ts dist-esmodule/index.d.ts",
"build:umd": "webpack",
"build:var": "cross-env NODE_WEBPACK_LIBRARY_PATH=dist-var NODE_WEBPACK_LIBRARY_TARGET=var webpack",
"build": "npm run clean && npm run build:css && npm run build:commonjs && npm run build:esmodule && npm run build:umd && npm run build:var && npm run build:types",
"clean": "rimraf -rf dist-css dist-umd dist-commonjs dist-esmodule dist-var types",
"prepublishOnly": "npm run build && npm run test",
"start": "npx serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iiif-commons/iiif-metadata-component.git"
},
"author": "@edsilv",
"license": "MIT",
"bugs": {
"url": "https://github.com/iiif-commons/iiif-metadata-component/issues"
},
"homepage": "https://github.com/iiif-commons/iiif-metadata-component#readme",
"devDependencies": {
"@types/node": "^8.10.52",
"@types/jquery": "3.3.14",
"cross-env": "^5.2.1",
"dts-bundle-generator": "^9.5.1",
"less": "3.13.1",
"rimraf": "2.6.2",
"serve": "^14.2.4",
"ts-loader": "^8",
"typescript": "^5",
"uglify-js": "3.4.9",
"webpack-cli": "^3.1.2",
"webpack": "^4.28.3"
},
"dependencies": {
"@edsilv/jquery-plugins": "1.0.7",
"@edsilv/utils": "1.0.2",
"@iiif/base-component": "2.*",
"@iiif/manifold": "2.*",
"@iiif/vocabulary": "1.*",
"manifesto.js": "4.*"
}
}