UNPKG

1.47 kBJSONView Raw
1{
2 "name": "split-string",
3 "description": "Easy way to split a string on a given character unless it's quoted or escaped.",
4 "version": "6.1.0",
5 "homepage": "https://github.com/jonschlinkert/split-string",
6 "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7 "contributors": [
8 "Brian Woodward (https://twitter.com/doowb)",
9 "Jon Schlinkert (http://twitter.com/jonschlinkert)"
10 ],
11 "repository": "jonschlinkert/split-string",
12 "bugs": {
13 "url": "https://github.com/jonschlinkert/split-string/issues"
14 },
15 "license": "MIT",
16 "files": [
17 "index.js",
18 "types/index.d.ts"
19 ],
20 "main": "index.js",
21 "types": "types/index.d.ts",
22 "engines": {
23 "node": ">=8.6"
24 },
25 "scripts": {
26 "test": "nyc mocha",
27 "test:types": "dtslint types"
28 },
29 "devDependencies": {
30 "dtslint": "^0.7.0",
31 "gulp-format-md": "^1.0.0",
32 "mocha": "^5.2.0",
33 "nyc": "^12.0.2"
34 },
35 "keywords": [
36 "character",
37 "escape",
38 "split",
39 "string"
40 ],
41 "nyc": {
42 "reporter": [
43 "lcov",
44 "text-summary"
45 ]
46 },
47 "verb": {
48 "toc": false,
49 "layout": "default",
50 "titles": [
51 ".",
52 "install",
53 "Why use this?"
54 ],
55 "related": {
56 "list": [
57 "deromanize",
58 "randomatic",
59 "repeat-string",
60 "romanize"
61 ]
62 },
63 "tasks": [
64 "readme"
65 ],
66 "plugins": [
67 "gulp-format-md"
68 ],
69 "lint": {
70 "reflinks": true
71 }
72 }
73}