UNPKG

2.84 kBJSONView Raw
1{
2 "name": "@live-html-editor/text-wrap",
3 "version": "0.6.0",
4 "description": "A utility to wrap (break) long lines of large texts into limited-length lines, based on given options",
5 "main": "dist/main.umd.js",
6 "bundle": "dist/bundle.umd.js",
7 "bundle-module": "dist/bundle.esm.js",
8 "types": "dist/types/TextWrap.d.ts",
9 "scripts": {
10 "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
11 "test:unit": "jest --verbose --colors --config jest/unit/config.js",
12 "test:unit:watch": "npm run test:unit -- --watch",
13 "pretest:unit:coverage": "rimraf coverage/unit",
14 "test:unit:coverage": "npm run test:unit -- --coverage",
15 "test:unit:prod": "npm run test:unit:coverage -- --no-cache",
16 "test:e2e": "jest --verbose --colors --config jest/e2e/config/main.js",
17 "prebuild": "rimraf dist",
18 "build": "rollup --config",
19 "build:watch": "npm run build -- --watch",
20 "build:prod": "npm run build -- --environment BUILD:production",
21 "tsc": "tsc --module commonjs",
22 "tsc:watch": "tsc --module commonjs --watch",
23 "commit": "git-cz",
24 "semantic-release": "npx semantic-release"
25 },
26 "repository": {
27 "type": "git",
28 "url": "https://github.com/live-html-editor/TextWrap.git"
29 },
30 "keywords": [
31 "editor",
32 "wrapper",
33 "wrap-long-lines",
34 "break-long-lines",
35 "dev4dev"
36 ],
37 "author": "S. M. Mir-Ismaili <s.m.mirismaili@gmail.com>",
38 "license": "MIT",
39 "bugs": {
40 "url": "https://github.com/live-html-editor/TextWrap/issues"
41 },
42 "homepage": "https://github.com/live-html-editor/TextWrap#readme",
43 "prettier": {
44 "semi": false,
45 "singleQuote": true
46 },
47 "devDependencies": {
48 "@babel/core": "^7.4.4",
49 "@babel/preset-env": "^7.4.4",
50 "@babel/preset-flow": "^7.0.0",
51 "@types/debug": "^4.1.4",
52 "@types/jest": "^24.0.12",
53 "@types/puppeteer": "^1.12.4",
54 "babel-jest": "^24.8.0",
55 "cz-conventional-changelog": "^2.1.0",
56 "fs-extra": "^8.0.1",
57 "jest": "^24.7.1",
58 "jest-config": "^24.7.1",
59 "jest-environment-node": "^24.8.0",
60 "js-sha256": "^0.9.0",
61 "lodash.camelcase": "^4.3.0",
62 "mkdirp": "^0.5.1",
63 "rimraf": "^2.6.3",
64 "rollup": "^1.12.2",
65 "rollup-plugin-auto-external": "^2.0.0",
66 "rollup-plugin-commonjs": "^10.0.0",
67 "rollup-plugin-node-builtins": "^2.1.2",
68 "rollup-plugin-node-globals": "^1.4.0",
69 "rollup-plugin-node-resolve": "^5.0.0",
70 "rollup-plugin-sourcemaps": "^0.4.2",
71 "rollup-plugin-terser": "^5.0.0",
72 "rollup-plugin-typescript2": "^0.21.1",
73 "temp-dir": "^2.0.0",
74 "ts-jest": "^24.0.2",
75 "tslint": "^5.16.0",
76 "tslint-config-prettier": "^1.18.0",
77 "tslint-config-standard": "^8.0.1",
78 "typescript": "^3.4.3"
79 },
80 "dependencies": {
81 "debug": "^4.1.1"
82 },
83 "config": {
84 "commitizen": {
85 "path": "./node_modules/cz-conventional-changelog"
86 }
87 }
88}