forked from readium/readium-cfi-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.57 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.57 KB
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
89
90
91
{
"name": "@evidentpoint/readium-cfi-js",
"version": "1.2.2",
"engines": {
"node": ">=4",
"npm": ">=2",
"yarn": ">=0.23"
},
"main": "dist/readium-cfi.umd.js",
"module": "dist/readium-cfi.esm.js",
"types": "readium-cfi-js.d.ts",
"description": "Readium - CFI javascript library",
"keywords": [
"readium",
"epub",
"epub3",
"cfi"
],
"author": {
"name": "Readium (Daniel Weck)",
"email": "daniel.weck@gmail.com",
"url": "http://github.com/readium"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"homepage": "http://github.com/readium/readium-cfi-js",
"bugs": {
"url": "http://github.com/readium/readium-cfi-js/issues",
"email": "daniel.weck@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/readium/readium-cfi-js.git"
},
"files": [
"dist/",
"license.txt",
"readium-cfi-js.d.ts",
"README.md"
],
"dependencies": {
"jquery": "^3.4.1",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"glob": "^7.1.4",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-firefox-launcher": "^1.2.0",
"karma-jasmine": "^2.0.1",
"pegjs": "^0.10.0",
"prettier": "^1.18.2",
"puppeteer": "^1.19.0",
"raw-loader": "^3.1.0",
"rimraf": "^2.6.3",
"rollup": "^1.19.4",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-node-resolve": "^5.2.0",
"webpack": "^4.39.1",
"webpack-cli": "^3.3.6"
},
"scripts": {
"clean": "rimraf dist/* && rimraf api-docs/* && rimraf gen/*",
"prebuild": "npm run clean && pegjs -o gen/parser.js src/parser.pegjs",
"build": "rollup -c",
"watch": "npm run build -- --watch",
"lint": "eslint src/**/*.js test/**/*.spec.js",
"format": "prettier --config .prettierrc --write src/**/**.js",
"test": "npm run test:build && npm run test:start",
"test:clean": "rimraf test/dist",
"test:build": "npm run test:clean && 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\"",
"prepublishOnly": "npm run build && npm run test"
}
}