forked from mozilla/nunjucks
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.76 KB
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
{
"name": "@11ty/nunjucks",
"description": "A powerful templating engine with inheritance, asynchronous control, and more (jinja2 inspired)",
"version": "4.0.0-alpha.3",
"publishConfig": {
"access": "public"
},
"author": "James Long (https://jlongster.com/)",
"contributors": [
"Zach Leatherman (https://zachleat.com)"
],
"main": "index.js",
"browser": "./browser/nunjucks.js",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@vitest/browser": "^4.1.9",
"@vitest/browser-playwright": "^4.1.9",
"@vitest/coverage-v8": "^4.1.9",
"cross-env": "^10.1.0",
"eslint": "^9.39.4",
"eslint-config-airbnb-extended": "^3.1.0",
"eslint-plugin-import": "^2.32.0",
"express": "^5.2.1",
"globals": "^17.7.0",
"playwright": "^1.61.1",
"supertest": "^7.2.2",
"vitest": "^4.1.9",
"webpack": "^5.108.1"
},
"scripts": {
"build:dist": "node scripts/copy-dist.js",
"build:bundle": "node scripts/bundle.js",
"build": "npm run build:dist && npm run build:bundle",
"build:test": "cross-env NODE_ENV=test node scripts/bundle.js",
"lint": "eslint --flag v10_config_lookup_from_file nunjucks scripts tests",
"prepare": "npm run build",
"test:node": "vitest run --project node",
"test:browser": "npm run build:test && vitest run --project browser",
"test:watch": "vitest",
"coverage": "vitest run --project node --coverage",
"test": "npm run lint && npm run build:test && vitest run"
},
"files": [
"bin/**",
"browser/*.js",
"src/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/11ty/nunjucks.git"
},
"keywords": [
"template",
"templating"
],
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/11ty/nunjucks/issues"
}
}