-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.68 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "text-wrapper",
"version": "2.0.2",
"description": "A library for wrapping (breaking) 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/TextWrapper.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json -t codeFrame 'src/**/*.ts' 'jest/**/*.ts'",
"README.md-TOC": "node pre-build/markdown-toc.js -f README.md",
"typedoc": "typedoc --out docs/ --target es6 --theme minimal --mode file src/ --ignoreCompilerErrors",
"doc": "npm run README.md-TOC && npm run typedoc",
"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:coverage:watch": "npm run test:unit:coverage -- --watch",
"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",
"prepublishOnly": "npm run test:unit:prod & (npm run build:prod && npm run test:e2e)",
"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/mirismaili/text-wrapper.git"
},
"keywords": [
"wrap-long-lines",
"break-long-lines",
"text-wrap",
"word-wrap",
"hard-wrap",
"line-length",
"line-width",
"wrap",
"wrapper",
"editor",
"library"
],
"author": "S. M. Mir-Ismaili <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mirismaili/text-wrapper/issues"
},
"homepage": "https://github.com/mirismaili/text-wrapper#readme",
"prettier": {
"semi": false,
"singleQuote": true
},
"//": "devDependencies: `@types/...` is needed to be in dependencies due to some notes in IntelliJ IDEs. See: https://intellij-support.jetbrains.com/hc/en-us/community/posts/206324989/comments/360000603579",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"@joseph184/rollup-plugin-node-builtins": "^2.1.4",
"@types/debug": "^4.1.4",
"@types/jest": "^24.0.12",
"@types/node": "^12.0.10",
"@types/puppeteer": "~1.12.4",
"babel-jest": "^24.8.0",
"builtin-modules": "^3.1.0",
"cz-conventional-changelog": "^2.1.0",
"fs-extra": "^8.0.1",
"jest": "^24.7.1",
"jest-environment-node": "^24.8.0",
"js-sha256": "^0.9.0",
"lodash.camelcase": "^4.3.0",
"lodash.snakecase": "^4.1.1",
"mkdirp": "^0.5.1",
"puppeteer": "~1.17.0",
"rimraf": "^2.6.3",
"rollup": "^1.12.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.22.0",
"simplatic-http-server": "1.1.0",
"supports-color": "^7.0.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",
"typedoc": "^0.14.2",
"typescript": "^3.5.2",
"yargs": "^13.2.4"
},
"dependencies": {
"debug": "^4.1.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}