forked from readium/r2-navigator-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.88 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@readium/navigator-web",
"version": "1.4.2",
"description": "A Readium Navigator module for the web, written in TypeScript",
"main": "./dist/readium-navigator-web.umd.js",
"module": "./dist/readium-navigator-web.esm.js",
"types": "./dist/readium-navigator-web.d.ts",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && npm run build:src && npm run build:types",
"build:src": "rollup -c",
"build:types": "dts-bundle --configJson dts-bundle.json",
"test": "npm run test:build && npm run test:start",
"test:clean": "rimraf test/dist",
"test:copy-dep": "cpx \"node_modules/@readium/glue-modules/dist/**/*\" test/fixtures/glue-js && cpx \"node_modules/@readium/glue-rpc/dist/**/*\" test/fixtures/glue-js && cpx \"node_modules/@readium/glue-shared/dist/**/*\" test/fixtures/glue-js",
"test:build": "npm run test:clean && npm run test:copy-dep && cd test && webpack",
"test:start": "cd test && karma start karma.config.js",
"test:debug": "npm run test:start -- --singleRun=false",
"test:watch": "echo \"not implemented\"",
"lint": "tslint -p . -c tslint.json 'src/**/*.ts' 'test/**/*.ts'",
"watch": "npm run build:src -- -w",
"format": "npm run lint -- --fix"
},
"keywords": [
"Readium"
],
"author": {
"name": "Readium Foundation",
"organization": "Readium Foundation",
"url": "http://github.com/readium/"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/jquery": "^3.3.33",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.0",
"chai": "^4.1.2",
"cpx": "^1.5.0",
"dts-bundle": "^0.7.3",
"glob": "^7.1.4",
"karma": "^4.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-spec-reporter": "^0.0.32",
"mocha": "^7.1.0",
"npm-run-all": "^4.1.2",
"prettier": "1.19.1",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.0.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-execute": "^1.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript2": "^0.26.0",
"simulate-event": "^1.4.0",
"source-map-loader": "^0.2.3",
"ts-loader": "^6.0.0",
"tslint": "^6.0.0",
"tslint-config-airbnb": "^5.8.0",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@readium/shared-models": "^1.0.0-alpha.2",
"isomorphic-url-shim": "^1.0.2",
"@evidentpoint/readium-cfi-js": "^1.2.1",
"@readium/glue-modules": "1.3.2",
"resize-sensor": "^0.0.6"
}
}