-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
54 lines (54 loc) · 1.64 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
{
"name": "shell-escape-tag",
"author": "chocolateboy",
"version": "2.0.2",
"description": "An ES6 template tag which escapes parameters for interpolation into shell commands",
"repository": "chocolateboy/shell-escape-tag",
"license": "Artistic-2.0",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"scripts": {
"build": "bili --quiet --map --format cjs -d dist src/index.js",
"build:doc": "toc-md --max-depth 3 README.md",
"build:prod": "cross-env NODE_ENV=production bili --format cjs --format esm -d dist src/index.js",
"clean": "shx rm -rf dist",
"prepublishOnly": "run-s clean build:prod build:doc test:unit",
"rebuild": "run-s clean build",
"repl": "node -r ./dev/repl.js",
"test": "run-s build test:unit",
"test:unit": "ava --verbose"
},
"files": [
"dist/index.esm.js",
"dist/index.js"
],
"browserslist": "maintained node versions",
"dependencies": {
"any-shell-escape": "chocolateboy/any-shell-escape#quote-empty-strings",
"inspect-custom-symbol": "^1.1.1",
"just-flatten-it": "^2.1.0",
"just-zip-it": "^2.1.0"
},
"devDependencies": {
"ava": "^3.13.0",
"bili": "^5.0.5",
"cross-env": "^7.0.2",
"npm-run-all": "^4.1.5",
"shx": "^0.3.2",
"toc-md-alt": "^0.4.1"
},
"keywords": [
"es6",
"escape",
"interpolate",
"interpolation",
"quote",
"shell",
"tag",
"tagged",
"tagged-template",
"tagged-templates",
"template",
"templates"
]
}