UNPKG

1.83 kBJSONView Raw
1{
2 "name": "@live-html-editor/text-wrap",
3 "version": "0.2.3",
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:dev": "jest",
11 "test:watch": "jest --coverage --watch",
12 "test": "jest --coverage --no-cache",
13 "prebuild": "rimraf dist",
14 "start": "rollup -cw",
15 "build:dev": "rollup -c --environment BUILD:development",
16 "build": "rollup -c --environment BUILD:production",
17 "tsc": "tsc --module commonjs",
18 "tsc:watch": "tsc --module commonjs --watch"
19 },
20 "repository": {
21 "type": "git",
22 "url": "git+https://github.com/live-html-editor/TextWrap.git"
23 },
24 "keywords": [
25 "editor",
26 "wrapper",
27 "wrap-long-lines",
28 "break-long-lines",
29 "dev4dev"
30 ],
31 "author": "S. M. Mir-Ismaili <s.m.mirismaili@gmail.com>",
32 "license": "MIT",
33 "bugs": {
34 "url": "https://github.com/live-html-editor/TextWrap/issues"
35 },
36 "homepage": "https://github.com/live-html-editor/TextWrap#readme",
37 "prettier": {
38 "semi": false,
39 "singleQuote": true
40 },
41 "devDependencies": {
42 "@types/jest": "^24.0.12",
43 "jest": "^24.7.1",
44 "jest-config": "^24.7.1",
45 "js-sha256": "^0.9.0",
46 "lodash.camelcase": "^4.3.0",
47 "rimraf": "^2.6.3",
48 "rollup": "^1.10.1",
49 "rollup-plugin-commonjs": "^9.3.4",
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 "temp-dir": "^2.0.0",
55 "ts-jest": "^24.0.2",
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}