forked from mozilla/nunjucks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
42
43
44
45
46
47
{
"name": "nunjucks",
"description": "A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired)",
"version": "3.0.0-dev.3",
"author": "James Long <[email protected]>",
"dependencies": {
"asap": "^2.0.3",
"chokidar": "^1.6.0",
"yargs": "^3.32.0"
},
"browser": "./browser/nunjucks.js",
"devDependencies": {
"expect.js": "*",
"express": "4.x",
"istanbul": "0.3.x",
"jshint": "2.8.x",
"mocha": "*",
"node-libs-browser": "^0.4.3",
"supertest": "*",
"uglify-js": "*",
"webpack": "^1.8.11"
},
"engines": {
"node": "*"
},
"scripts": {
"lint": "jshint .",
"test": "jshint . && istanbul cover ./node_modules/mocha/bin/_mocha -- -R dot tests",
"browserfiles": "./bin/bundle"
},
"bin": {
"nunjucks-precompile": "./bin/precompile"
},
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/mozilla/nunjucks.git"
},
"keywords": [
"template",
"templating"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/mozilla/nunjucks/issues"
}
}