forked from node-swig/swig-templates
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·77 lines (77 loc) · 2.01 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "free-swig",
"version": "1.5.4",
"description": "A simple, powerful, and extendable templating engine for node.js, similar to Django, Jinja2, and Twig.",
"keywords": [
"template",
"templating",
"html",
"django",
"jinja",
"twig",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/freecycle/swig-templates.git"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"uglify-js": "3.15.5",
"yargs": "^17.5.0"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"expect.js": "~0.3.1",
"file": "~0.2.2",
"jsdoc": "4.0.0",
"less": "~4.2.0",
"lodash": "~4.17.21",
"mocha": "^10.2.0",
"rimraf": "^3.0.2",
"semistandard": "^17.0.0"
},
"license": "MIT",
"main": "index",
"bin": {
"swig": "./bin/swig.js"
},
"scripts": {
"copy": "copyfiles -u 1 'docs/**/*.{ico,css,js}' build/",
"html": "static-site -s docs -b build",
"jsdoc:swig": "jsdoc lib/swig.js -X > docs/data/api.json",
"jsdoc:filters": "jsdoc lib/filters.js -X > docs/data/filters.json",
"jsdoc:tags": "jsdoc lib/tags/ -X > docs/data/tags.json",
"jsdoc:loaders": "jsdoc lib/loaders/ -X > docs/data/loaders.json",
"jsdoc:parser": "jsdoc lib/parser.js lib/lexer.js -X > docs/data/extending.json",
"jsdoc": "npm run jsdoc:swig && npm run jsdoc:filters && npm run jsdoc:tags && npm run jsdoc:loaders && npm run jsdoc:parser",
"lint": "semistandard 'lib/**/*.js' 'tests/**/*.js'",
"predocs": "npm run jsdoc && npm run copy && npm run html",
"test": "mocha --exclude test/bin/* tests",
"semantic-release": "semantic-release"
},
"watches": {
"copy": "docs/**/*.{ico,css,js}",
"html": [
"docs/**/*.{html,json}",
"source/_helpers/**"
],
"jsdoc": "lib/**/*.js"
},
"bugs": {
"url": "https://github.com/node-swig/swig-templates/issues"
},
"semistandard": {
"env": [
"mocha"
],
"ignore": [
"docs",
"dist",
"tmp",
"examples"
]
}
}