-
Notifications
You must be signed in to change notification settings - Fork 1k
/
package.json
54 lines (54 loc) · 1.31 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": "dot",
"description": "Concise and fast javascript templating compatible with nodejs and other javascript environments",
"keywords": [
"template",
"fast",
"simple",
"templating"
],
"version": "1.1.3",
"main": "index.js",
"browser": "doT.js",
"bin": {
"dottojs": "./bin/dot-packer"
},
"homepage": "http://github.com/olado/doT",
"repository": "git://github.com/olado/doT.git",
"author": "Laura Doktorova <[email protected]>",
"engines": [
"node >=0.2.6"
],
"license": "MIT",
"scripts": {
"eslint": "if-node-version '>=4' eslint *.js --ignore-pattern *.min.js",
"test-spec": "mocha test/*.test.js",
"test-cov": "nyc npm run test-spec",
"test": "npm run eslint && npm run test-cov",
"bundle": "uglifyjs doT.js -o doT.min.js -c -m --preamble '/* Laura Doktorova https://github.com/olado/doT */'",
"prepublish": "npm run bundle"
},
"dependencies": {},
"devDependencies": {
"commander": "*",
"coveralls": "^3.0.9",
"eslint": "^6.7.2",
"if-node-version": "^1.1.1",
"jshint": "*",
"mkdirp": "*",
"mocha": "*",
"nyc": "^14.1.1",
"pre-commit": "^1.1.3",
"uglify-js": "*"
},
"nyc": {
"exclude": [
"test",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
]
}
}