Projekt

Obecné

Profil

Stáhnout (1.19 KB) Statistiky
| Větev: | Revize:
1 3a515b92 cagy
{
2
  "name": "regex-not",
3
  "description": "Create a javascript regular expression for matching everything except for the given string.",
4
  "version": "1.0.2",
5
  "homepage": "https://github.com/jonschlinkert/regex-not",
6
  "author": "Jon Schlinkert (https://github.com/jonschlinkert)",
7
  "repository": "jonschlinkert/regex-not",
8
  "bugs": {
9
    "url": "https://github.com/jonschlinkert/regex-not/issues"
10
  },
11
  "license": "MIT",
12
  "files": [
13
    "index.js"
14
  ],
15
  "main": "index.js",
16
  "engines": {
17
    "node": ">=0.10.0"
18
  },
19
  "scripts": {
20
    "test": "mocha"
21
  },
22
  "dependencies": {
23
    "extend-shallow": "^3.0.2",
24
    "safe-regex": "^1.1.0"
25
  },
26
  "devDependencies": {
27
    "gulp-format-md": "^1.0.0",
28
    "mocha": "^3.5.3"
29
  },
30
  "keywords": [
31
    "exec",
32
    "match",
33
    "negate",
34
    "negation",
35
    "not",
36
    "regex",
37
    "regular expression",
38
    "test"
39
  ],
40
  "verb": {
41
    "toc": false,
42
    "layout": "default",
43
    "tasks": [
44
      "readme"
45
    ],
46
    "plugins": [
47
      "gulp-format-md"
48
    ],
49
    "related": {
50
      "list": [
51
        "regex-cache",
52
        "to-regex"
53
      ]
54
    },
55
    "reflinks": [
56
      "verb",
57
      "verb-generate-readme"
58
    ],
59
    "lint": {
60
      "reflinks": true
61
    }
62
  }
63
}