-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.35 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
{
"name": "freemarker-parser",
"version": "1.1.6",
"description": "Freemarker Parser is a javascript implementation of the Freemarker",
"scripts": {
"build": "tsc -b",
"test": "jest --coverage",
"format": "prettier --write \"./**/*.{ts,js,json,md}\"",
"format-check": "prettier --list-different \"./**/*.{ts,js,json,md}\"",
"lint": "eslint . --ext .js,.ts",
"lint-fix": "eslint . --ext .js,.ts --fix",
"watch": "tsc -b --watch"
},
"main": "lib/index.js",
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/armano2/freemarker-parser.git"
},
"keywords": [
"freemarker",
"parser",
"js",
"ast",
"ftl"
],
"engines": {
"node": ">=10.0.0"
},
"author": "Armano (https://github.com/armano2)",
"license": "MIT",
"bugs": {
"url": "https://github.com/armano2/freemarker-parser/issues"
},
"homepage": "https://github.com/armano2/freemarker-parser#readme",
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.13",
"@typescript-eslint/eslint-plugin": "^4.10.0",
"@typescript-eslint/parser": "^4.10.0",
"eslint": "^7.15.0",
"eslint-plugin-jest": "^24.1.3",
"glob": "^7.1.6",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}