-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.77 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
61
62
63
64
65
66
67
68
69
{
"name": "dry",
"description": "Dry is superset of the Liquid templating language, with first-class support for advanced inheritance features, and more.",
"version": "2.0.0",
"license": "MIT",
"repository": "jonschlinkert/dry",
"homepage": "https://github.com/jonschlinkert/dry",
"author": "Jon Schlinkert (https://github.com/jonschlinkert)",
"bugs": {
"url": "https://github.com/jonschlinkert/dry/issues"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"engines": {
"node": ">=16"
},
"scripts": {
"test": "mocha --recursive --ignore 'test/fixtures/**'",
"test:ci": "nyc --reporter=lcov npm run test",
"cover": "nyc --reporter=text --reporter=html npm run test"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"expand-value": "^1.0.0",
"export-files": "^3.0.2",
"fill-range": "^7.1.1",
"get-value": "^4.0.1",
"hash-sum": "^2.0.0",
"is-number": "^7.0.0",
"kind-of": "^6.0.3",
"set-value": "^4.1.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.8",
"@babel/eslint-plugin": "^7.25.9",
"@folder/readdir": "^3.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"eslint": "8.57.1",
"gulp-format-md": "^2.0.0",
"handlebars": "^4.7.8",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"parser-front-matter": "^1.6.4",
"prettier": "^3.5.1",
"remarkable": "^2.0.1",
"time-require": "github:jonschlinkert/time-require",
"vinyl": "^3.0.0"
},
"verb": {
"toc": false,
"layout": "default",
"tasks": [
"readme"
],
"plugins": [
"gulp-format-md"
],
"lint": {
"reflinks": true
}
}
}