This repository has been archived by the owner on Aug 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
{
"name": "mustache-async",
"version": "0.1.3",
"description": "Logic-less {{mustache}} templates with async view-function support (fork of mustache.js)",
"author": "Soluto <https://github.com/Soluto/mustache-async.js>",
"homepage": "https://github.com/Soluto/mustache-async.js",
"repository": {
"type": "git",
"url": "https://github.com/Soluto/mustache-async.js"
},
"keywords": [
"mustache async",
"mustache",
"async templates",
"template",
"templates",
"async templating",
"ejs"
],
"main": "./mustache.js",
"bin": {
"mustache": "./bin/mustache"
},
"files": [
"mustache.js",
"mustache.min.js",
"bin",
"wrappers",
"LICENSE"
],
"volo": {
"url": "https://raw.github.com/janl/mustache.js/{version}/mustache.js"
},
"engines": {
"npm": ">=4.1.0"
},
"scripts": {
"pretest": "eslint mustache.js bin/mustache",
"test": "mocha --reporter spec test/*-test.js",
"test-render": "mocha --reporter spec test/render-test",
"pre-test-browser": "node test/create-browser-suite.js",
"test-browser": "npm run pre-test-browser && zuul -- test/context-test.js test/parse-test.js test/scanner-test.js test/render-test-browser.js",
"test-browser-local": "npm run pre-test-browser && zuul --no-coverage --local 8080 -- test/context-test.js test/scanner-test.js test/parse-test.js test/render-test-browser.js"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^5.9.0",
"jshint": "^2.9.5",
"mocha": "^5.2.0",
"uglify-js": "^3.4.6",
"zuul": "^3.12.0",
"zuul-ngrok": "nolanlawson/zuul-ngrok#patch-1"
},
"greenkeeper": {
"ignore": [
"eslint"
]
},
"license": "MIT",
"dependencies": {}
}