This repository has been archived by the owner on Feb 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
126 lines (126 loc) · 3.21 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "swig-templates",
"version": "0.0.0-development",
"description": "A simple, powerful, and extendable templating engine for node.js and browsers, similar to Django, Jinja2, and Twig.",
"keywords": [
"template",
"templating",
"html",
"django",
"jinja",
"twig",
"express",
"block"
],
"repository": {
"type": "git",
"url": "https://github.com/node-swig/swig-templates.git"
},
"dependencies": {
"optimist": "~0.6",
"uglify-js": "2.6.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"@commitlint/travis-cli": "^7.0.0",
"blanket": "~1.1",
"browserify": "~2",
"copyfiles": "^1.0.0",
"expect.js": "~0.2",
"express": "~3",
"file": "~0.2",
"git-validate": "^2.1.4",
"husky": "^0.14.3",
"jsdoc": "3.4.0",
"less": "~1.4",
"lint-staged": "^7.2.2",
"live-server": "^1.1.0",
"lodash": "~1.3.1",
"mocha": "^5.2.0",
"mocha-chrome": "^1.1.0",
"npm-run-all": "^4.1.3",
"parallelshell": "^2.0.0",
"prettier-standard": "^8.0.1",
"rerun-script": "^0.6.0",
"rimraf": "^2.5.2",
"semantic-release": "^15.9.8",
"standard": "^11.0.1",
"static-site": "^1.3.1",
"travis-cov": "~0.2"
},
"license": "MIT",
"main": "index",
"engines": {
"node": ">=0.10.0"
},
"bin": {
"swig": "./bin/swig.js"
},
"scripts": {
"commitmsg": "commitlint -E GIT_PARAMS",
"copy": "copyfiles -u 1 'docs/**/*.{ico,css,js}' build/",
"docs": "parallelshell 'live-server build/' 'rerun-script'",
"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": "run-s jsdoc:swig jsdoc:filters jsdoc:tags jsdoc:loaders jsdoc:parser",
"lint": "standard 'lib/**/*.js' 'tests/**/*.js' 'scripts/**/*.js'",
"predocs": "run-s jsdoc copy html",
"test": "make test reporter=spec && make test-browser && make coverage cov-reporter=travis-cov",
"semantic-release": "semantic-release",
"format": "prettier-standard 'lib/**/*.js' 'tests/**/*.js' 'scripts/**/*.js'",
"precommit": "lint-staged"
},
"watches": {
"copy": "docs/**/*.{ico,css,js}",
"html": [
"docs/**/*.{html,json}",
"source/_helpers/**"
],
"jsdoc": "lib/**/*.js"
},
"config": {
"blanket": {
"pattern": [
"swig-templates/lib"
]
},
"travis-cov": {
"threshold": 95
}
},
"bugs": {
"url": "https://github.com/node-swig/swig-templates/issues"
},
"standard": {
"env": [
"mocha"
],
"ignore": [
"docs",
"dist",
"tmp",
"examples"
]
},
"lint-staged": {
"linters": {
"lib/**/*.js": [
"prettier-standard",
"git add"
],
"tests/**/*.js": [
"prettier-standard",
"git add"
],
"scripts/**/*.js": [
"prettier-standard",
"git add"
]
}
}
}