package.json 823 Bytes
Newer Older
Rosanny Sihombing's avatar
Rosanny Sihombing committed
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
{
  "name": "character-parser",
  "version": "2.2.0",
  "description": "Parse JavaScript one character at a time to look for snippets in Templates.  This is not a validator, it's just designed to allow you to have sections of JavaScript delimited by brackets robustly.",
  "main": "index.js",
  "scripts": {
    "coverage": "istanbul cover test/index.js",
    "test": "node test/index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ForbesLindesay/character-parser.git"
  },
  "keywords": [
    "parser",
    "JavaScript",
    "bracket",
    "nesting",
    "comment",
    "string",
    "escape",
    "escaping"
  ],
  "author": "ForbesLindesay",
  "license": "MIT",
  "devDependencies": {
    "istanbul": "~0.3.22",
    "testit": "~2.0.2"
  },
  "dependencies": {
    "is-regex": "^1.0.3"
  }
}