This repository has been archived by the owner on Jun 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.88 KB
/
package.json
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
89
90
91
92
{
"name": "@live-html-editor/text-wrap",
"version": "0.7.0",
"description": "A utility to wrap (break) long lines of large texts into limited-length lines, based on given options",
"main": "dist/main.umd.js",
"bundle": "dist/bundle.umd.js",
"bundle-module": "dist/bundle.esm.js",
"types": "dist/types/TextWrap.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'test/**/*.ts'",
"test:unit": "jest --verbose --colors --config jest/unit/config.js",
"test:unit:watch": "npm run test:unit -- --watch",
"pretest:unit:coverage": "rimraf coverage/unit",
"test:unit:coverage": "npm run test:unit -- --coverage",
"test:unit:prod": "npm run test:unit:coverage -- --no-cache",
"test:e2e": "jest --verbose --colors --config jest/e2e/config/main.js",
"prebuild": "rimraf dist",
"build": "rollup --config",
"build:ugligy": "npm run build -- --environment UGLIFY",
"build:watch": "npm run build -- --watch",
"build:prod": "npm run build -- --environment BUILD:production",
"build:prod0": "npm run build -- --environment BUILD:production,UGLIFY:false",
"tsc": "tsc --module commonjs",
"tsc:watch": "tsc --module commonjs --watch",
"commit": "git-cz",
"semantic-release": "npx semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/live-html-editor/TextWrap.git"
},
"keywords": [
"editor",
"wrapper",
"wrap-long-lines",
"break-long-lines",
"dev4dev"
],
"author": "S. M. Mir-Ismaili <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/live-html-editor/TextWrap/issues"
},
"homepage": "https://github.com/live-html-editor/TextWrap#readme",
"prettier": {
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.12",
"@types/puppeteer": "^1.12.4",
"babel-jest": "^24.8.0",
"cz-conventional-changelog": "^2.1.0",
"fs-extra": "^8.0.1",
"jest": "^24.7.1",
"jest-config": "^24.7.1",
"jest-environment-node": "^24.8.0",
"js-sha256": "^0.9.0",
"lodash.camelcase": "^4.3.0",
"mkdirp": "^0.5.1",
"puppeteer": "^1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.12.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"supports-color": "^6.1.0",
"temp-dir": "^2.0.0",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.4.3"
},
"dependencies": {
"debug": "^4.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}