package.json 2.76 KB
Newer Older
YazhouChen's avatar
YazhouChen committed
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
{
  "_args": [
    [
      "css-line-break@1.0.1",
      "E:\\changfa\\crscd-view"
    ]
  ],
  "_from": "css-line-break@1.0.1",
  "_id": "css-line-break@1.0.1",
  "_inBundle": false,
  "_integrity": "sha1-GfIGOjPpX7KDG4ZEbAuAwYivRQo=",
  "_location": "/css-line-break",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "css-line-break@1.0.1",
    "name": "css-line-break",
    "escapedName": "css-line-break",
    "rawSpec": "1.0.1",
    "saveSpec": null,
    "fetchSpec": "1.0.1"
  },
  "_requiredBy": [
    "/html2canvas"
  ],
  "_resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-1.0.1.tgz",
  "_spec": "1.0.1",
  "_where": "E:\\changfa\\crscd-view",
  "author": {
    "name": "Niklas von Hertzen",
    "email": "niklasvh@gmail.com",
    "url": "https://hertzen.com"
  },
  "bugs": {
    "url": "https://github.com/niklasvh/css-line-break/issues"
  },
  "dependencies": {
    "base64-arraybuffer": "^0.1.5"
  },
  "description": "css-line-break ============== A JavaScript library for Line Breaking and identifying Word Boundaries,  [implementing the Unicode Line Breaking Algorithm (UAX #14)](http://unicode.org/reports/tr14/)",
  "devDependencies": {
    "babel-cli": "6.24.1",
    "babel-core": "6.25.0",
    "babel-eslint": "7.2.3",
    "babel-loader": "7.1.1",
    "babel-plugin-dev-expression": "0.2.1",
    "babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
    "babel-plugin-transform-object-rest-spread": "6.23.0",
    "babel-preset-es2015": "6.24.1",
    "babel-preset-flow": "6.23.0",
    "base64-arraybuffer": "^0.1.5",
    "eslint": "4.2.0",
    "eslint-plugin-flowtype": "2.35.0",
    "eslint-plugin-prettier": "2.1.2",
    "flow-bin": "0.61.0",
    "mocha": "4.0.1",
    "prettier": "1.9.2",
    "rimraf": "2.6.1"
  },
  "homepage": "https://github.com/niklasvh/css-line-break#readme",
  "keywords": [
    "white-space",
    "line-break",
    "word-break",
    "word-wrap",
    "overflow-wrap"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "name": "css-line-break",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/niklasvh/css-line-break.git"
  },
  "scripts": {
    "build": "rimraf dist/ && npm run build:npm",
    "build:npm": "babel src/ -d dist/ --plugins=dev-expression,transform-es2015-modules-commonjs",
    "flow": "flow",
    "format": "prettier --single-quote --no-bracket-spacing --tab-width 4 --print-width 100 --write \"{src,scripts}/**/*.js\"",
    "generate-tests": "babel-node scripts/generate_line_break_tests.js",
    "generate-trie": "babel-node scripts/generate_line_break_trie.js",
    "lint": "eslint src/**/*.js",
    "mocha": "mocha --require babel-core/register tests/*.js",
    "test": "npm run flow && npm run lint && npm run mocha"
  },
  "version": "1.0.1"
}