-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "character-parser",
"@rollingversions": {
"versioning": "ALWAYS_INCREASING"
},
"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": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": [
{
"import": "./lib/index.mjs",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./lib/index.js"
]
},
"files": [
"lib"
],
"scripts": {
"pretest": "npm run build",
"prepublishOnly": "npm run build",
"build": "tsc && tsc -p tsconfig.modules.json && mv lib-next/index.js lib/index.mjs && rimraf lib-next",
"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": {
"rimraf": "^3.0.2",
"testit": "~3.1.0",
"typescript": "^4.5.4"
},
"dependencies": {}
}