@readium-js/cfi
Version:
Readium - CFI javascript library
76 lines (75 loc) • 2.18 kB
JSON
{
"name": "@readium-js/cfi",
"version": "1.0.0-alpha.2",
"main": "dist/readium-js-cfi.umd.js",
"module": "dist/readium-js-cfi.esm.js",
"description": "Readium - CFI javascript library",
"keywords": [
"readium",
"epub",
"epub3",
"cfi"
],
"author": {
"name": "Readium (Juan Corona)",
"email": "juanc@evidentpoint.com",
"url": "http://github.com/readium"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"files": [
"dist/",
"LICENSE",
"README.md"
],
"dependencies": {
"jquery": "^3.3.1",
"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": "^5.2.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-prettier": "^2.6.2",
"glob": "^7.1.2",
"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",
"pegjs": "^0.10.0",
"prettier": "^1.13.7",
"puppeteer": "^1.6.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rollup": "^0.63.5",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-node-resolve": "^3.3.0",
"webpack": "^4.16.4",
"webpack-cli": "^3.1.0"
},
"scripts": {
"clean": "rimraf dist/* && 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\""
}
}