-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.53 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
{
"name": "@mscalora/overtemplate",
"version": "2.1.4",
"description": "Yet another replacement for _.template (underscore or lodash) without unsafe evals.",
"main": "src/overtemplate.js",
"browser": "dist/overtemplate.js",
"scripts": {
"test": "check-node-version --package --print && nyc mocha -- -r ./tests/setup/before.js 'tests/**/*.test.js'",
"build": "browserify -d -p tinyify src/overtemplate.js | exorcist dist/overtemplate.map.js >dist/overtemplate.js",
"prepublishOnly": "tools/validate-examples-in-docs.js"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
}
},
"engines": {
"node": ">= 10",
"npm": ">= 5.7.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/mscalora/overtemplate.git"
},
"keywords": [
"Underscore",
"Lodash",
"template",
"loop",
"conditional",
"csp",
"content security policy",
"unsafe",
"inline",
"eval",
"_.template"
],
"author": "Mike Scalora",
"license": "MIT",
"bugs": {
"url": "https://github.com/mscalora/overtemplate/issues"
},
"homepage": "https://github.com/mscalora/overtemplate#readme",
"devDependencies": {
"browserify": "^17.0.0",
"chai": "4.1.2",
"chalk": "^4.1.2",
"check-node-version": "3.2.0",
"commander": "7",
"eslint": "6.8.0",
"exorcist": "^2.0.0",
"expr-eval": "^2.0.2",
"glob": "^7.2.0",
"mocha": "8.4.0",
"nyc": "15.1.0",
"tinyify": "^3.0.0"
},
"dependencies": {
"lodash": "4.x"
}
}