forked from readium/readium-cfi-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.4 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
{
"name": "readium-cfi-js",
"version": "0.31.0",
"engines": {
"node": ">=4",
"npm": ">=2",
"yarn": ">=0.23"
},
"main": "dist/readium-cfi.umd.js",
"module": "dist/readium-cfi.esm.js",
"description": "Readium - CFI javascript library",
"keywords": [
"readium",
"epub",
"epub3",
"cfi"
],
"author": {
"name": "Readium (Daniel Weck)",
"email": "[email protected]",
"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": "[email protected]"
},
"repository": {
"type": "git",
"url": "git://github.com/readium/readium-cfi-js.git"
},
"files": [
"dist/",
"license.txt",
"README.md"
],
"dependencies": {
"jquery": "^3.6.0",
"lodash-es": "^4.17.9"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.11.0",
"jasmine-core": "^3.1.0",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-firefox-launcher": "^1.0.1",
"karma-jasmine": "^1.1.0",
"karma-sauce-launcher": "^1.2.0",
"pegjs": "^0.10.0",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"yuidocjs": "^0.10.2"
},
"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",
"pretest": "npm run build",
"test": "karma start karma.conf.js --singleRun --no-auto-watch",
"test:watch": "karma start karma.conf.js --auto-watch --browsers ChromeHeadless",
"test:debug": "karma start karma.conf.js --no-auto-watch",
"test:travis": "karma start karma.travis.conf.js --singleRun --no-auto-watch",
"test:travis:firefox": "npm run test:travis --readium-cfi-js:MODE=firefox",
"test:travis:chrome": "npm run test:travis --readium-cfi-js:MODE=chrome"
}
}