UNPKG

2.96 kBJSONView Raw
1{
2 "name": "@live-html-editor/text-wrap",
3 "version": "0.7.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:ugligy": "npm run build -- --environment UGLIFY",
20 "build:watch": "npm run build -- --watch",
21 "build:prod": "npm run build -- --environment BUILD:production",
22 "tsc": "tsc --module commonjs",
23 "tsc:watch": "tsc --module commonjs --watch",
24 "commit": "git-cz",
25 "semantic-release": "npx semantic-release"
26 },
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/live-html-editor/TextWrap.git"
30 },
31 "keywords": [
32 "editor",
33 "wrapper",
34 "wrap-long-lines",
35 "break-long-lines",
36 "dev4dev"
37 ],
38 "author": "S. M. Mir-Ismaili <s.m.mirismaili@gmail.com>",
39 "license": "MIT",
40 "bugs": {
41 "url": "https://github.com/live-html-editor/TextWrap/issues"
42 },
43 "homepage": "https://github.com/live-html-editor/TextWrap#readme",
44 "prettier": {
45 "semi": false,
46 "singleQuote": true
47 },
48 "devDependencies": {
49 "@babel/core": "^7.4.4",
50 "@babel/preset-env": "^7.4.4",
51 "@babel/preset-flow": "^7.0.0",
52 "@types/debug": "^4.1.4",
53 "@types/jest": "^24.0.12",
54 "@types/puppeteer": "^1.12.4",
55 "babel-jest": "^24.8.0",
56 "cz-conventional-changelog": "^2.1.0",
57 "fs-extra": "^8.0.1",
58 "jest": "^24.7.1",
59 "jest-config": "^24.7.1",
60 "jest-environment-node": "^24.8.0",
61 "js-sha256": "^0.9.0",
62 "lodash.camelcase": "^4.3.0",
63 "mkdirp": "^0.5.1",
64 "puppeteer": "^1.17.0",
65 "rimraf": "^2.6.3",
66 "rollup": "^1.12.2",
67 "rollup-plugin-auto-external": "^2.0.0",
68 "rollup-plugin-commonjs": "^10.0.0",
69 "rollup-plugin-node-builtins": "^2.1.2",
70 "rollup-plugin-node-globals": "^1.4.0",
71 "rollup-plugin-node-resolve": "^5.0.0",
72 "rollup-plugin-sourcemaps": "^0.4.2",
73 "rollup-plugin-terser": "^5.0.0",
74 "rollup-plugin-typescript2": "^0.21.1",
75 "supports-color": "^6.1.0",
76 "temp-dir": "^2.0.0",
77 "ts-jest": "^24.0.2",
78 "tslint": "^5.16.0",
79 "tslint-config-prettier": "^1.18.0",
80 "tslint-config-standard": "^8.0.1",
81 "typescript": "^3.4.3"
82 },
83 "dependencies": {
84 "debug": "^4.1.1"
85 },
86 "config": {
87 "commitizen": {
88 "path": "./node_modules/cz-conventional-changelog"
89 }
90 }
91}