-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
41 lines (41 loc) · 1 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
{
"name": "@jvitela/mustache-wax",
"version": "1.0.4",
"description": "An extension for Mustache.js which enables the use of formatters inside of expressions",
"author": "JVitela",
"homepage": "https://jvitela.github.io/mustache-wax/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jvitela/mustache-wax.git"
},
"keywords": [
"mustache",
"formatter",
"filter",
"chaining",
"extension"
],
"bugs": {
"url": "https://github.com/jvitela/mustache-wax/issues"
},
"main": "dist/mustache-wax.min.js",
"scripts": {
"build": "npm run build:dev; npm run build:prod",
"build:prod": "webpack --mode=production",
"build:dev": "webpack --mode=development",
"test": "mocha --reporter spec test/spec.js"
},
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^10.2.0",
"webpack": "^5.47.0",
"webpack-cli": "^4.7.2"
},
"directories": {
"test": "test"
},
"peerDependencies": {
"mustache": "^4.2.0"
}
}