UNPKG

1.89 kBJSONView Raw
1{
2 "name": "@live-html-editor/text-wrap",
3 "version": "0.1.13",
4 "description": "A utility to wrap (break) long lines of large texts into limited-length lines, based on given options",
5 "main": "./dist/text-wrap.umd.js",
6 "module": "./dist/text-wrap.esm.js",
7 "types": "./dist/types/TextWrap.d.ts",
8 "scripts": {
9 "lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
10 "test": "jest --coverage",
11 "test:watch": "jest --coverage --watch",
12 "test:prod": "npm run test -- --no-cache",
13 "prebuild": "rimraf dist",
14 "build": "rollup -c --environment BUILD:production",
15 "start": "rollup -cw",
16 "tsc": "tsc --module commonjs",
17 "tsc:watch": "tsc --module commonjs --watch"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/live-html-editor/text-wrap.git"
22 },
23 "keywords": [
24 "editor",
25 "wrapper",
26 "wrap-long-lines",
27 "break-long-lines",
28 "dev4dev"
29 ],
30 "author": "S. M. Mir-Ismaili <s.m.mirismaili@gmail.com>",
31 "license": "MIT",
32 "bugs": {
33 "url": "https://github.com/live-html-editor/text-wrap/issues"
34 },
35 "homepage": "https://github.com/live-html-editor/text-wrap#readme",
36 "prettier": {
37 "semi": false,
38 "singleQuote": true
39 },
40 "devDependencies": {
41 "@types/jest": "^24.0.12",
42 "jest": "^24.7.1",
43 "jest-config": "^24.7.1",
44 "js-sha256": "^0.9.0",
45 "lodash.camelcase": "^4.3.0",
46 "rimraf": "^2.6.3",
47 "rollup": "^1.10.1",
48 "rollup-plugin-commonjs": "^9.3.4",
49 "rollup-plugin-json": "^4.0.0",
50 "rollup-plugin-node-resolve": "^4.2.3",
51 "rollup-plugin-sourcemaps": "^0.4.2",
52 "rollup-plugin-terser": "^4.0.4",
53 "rollup-plugin-typescript2": "^0.21.0",
54 "ts-jest": "^24.0.2",
55 "ts-loader": "^5.3.3",
56 "tslint": "^5.16.0",
57 "tslint-config-prettier": "^1.18.0",
58 "tslint-config-standard": "^8.0.1",
59 "typescript": "^3.4.3"
60 },
61 "dependencies": {}
62}