-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 816 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 816 Bytes
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": "stache-render",
"version": "1.0.0",
"description": "A module to render a string using Mustache templating",
"main": "index.js",
"scripts": {
"lint": "npx eslint '**/*.{js,jsx}'",
"test": "npx jest --coverage"
},
"repository": {
"type": "git",
"url": "git@adaptablebytes.github.com:AdaptableBytes/stache-render.git"
},
"keywords": [
"mustache",
"templating"
],
"author": "Adaptable Bytes",
"license": "MIT",
"devDependencies": {
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"jest": "^26.6.3"
},
"dependencies": {
"fs-extra": "^9.0.1",
"mustache": "^4.0.1"
}
}