-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.83 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
{
"name": "nunjucks-parser",
"version": "1.1.0",
"description": "Extract dependencies from nunjucks templates",
"author": "chocolateboy",
"license": "Artistic-2.0",
"repository": "chocolateboy/nunjucks-parser",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "bili --map --format cjs -d dist src/index.js",
"build:doc": "toc-md README.md",
"build:release": "cross-env NODE_ENV=production bili --no-map --format cjs,esm -d dist src/index.js",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-s clean build:release build:doc test:run",
"rebuild": "run-s clean build",
"test": "run-s build test:run",
"test:run": "ava --verbose ./test/*.js"
},
"files": [
"dist/index.esm.js",
"dist/index.js"
],
"browserslist": [
">0.25%",
"firefox 56",
"firefox esr",
"maintained node versions",
"not dead",
"not ie 11",
"not op_mini all"
],
"dependencies": {
"pify": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"ava": "^3.13.0",
"babel-plugin-source-map-support": "^2.1.3",
"bili": "^5.0.5",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"nunjucks": "^3.2.2",
"shx": "^0.3.3",
"source-map-support": "^0.5.19",
"sprintf-js": "^1.1.2",
"toc-md-alt": "^0.4.1"
},
"keywords": [
"bundle",
"bundler",
"dependencies",
"dependency",
"extract",
"metadata",
"nunjucks",
"parcel",
"parcel-bundler",
"parse",
"parser",
"query",
"render",
"template",
"templates"
],
"peerDependencies": {
"nunjucks": "^3.0"
}
}