This repository has been archived by the owner on Sep 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
107 lines (107 loc) · 2.75 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "tarima",
"version": "4.9.7",
"description": "Templating madness!",
"main": "lib/index.js",
"bin": {
"tarima": "./bin/cli.js"
},
"files": [
"lib/**",
"bin/**"
],
"repository": {
"type": "git",
"url": "https://github.com/tacoss/tarima.git"
},
"bugs": {
"url": "https://github.com/tacoss/tarima/issues"
},
"keywords": [
"templating",
"template",
"partial",
"views"
],
"author": {
"name": "Alvaro Cabrera",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"node": ">=0.8"
},
"scripts": {
"dev": "npm run test:run -- -w",
"lint": "eslint lib bin",
"mocha": "_mocha --bail --exit --recursive --file ./tests/helpers.js -bR spec tests/*.test.js",
"test:run": "NODE_ENV=test npm run mocha --",
"cover": "nyc --silent --x '**/tests/**' -- npm run test:run",
"cover:up": "codecov --file=coverage/lcov.info --disable=gcov -e TRAVIS_NODE_VERSION",
"html:report": "nyc report -r html",
"ci:report": "nyc report -r lcov && npm run cover:up",
"test:ci": "npm run cover && npm run ci:report",
"test": "npm run lint && npm run test:run --"
},
"dependencies": {
"chokidar": "^3.3.1",
"debug": "^4.0.1",
"dotenv": "^8.0.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"global-or-local": "^0.1.2",
"js-yaml": "^3.13.1",
"log-pose": "^0.3.4",
"memory-fs": "^0.5.0",
"micromatch": "^4.0.1",
"redent": "^3.0.0",
"rewrite-exports": "^0.0.1",
"rewrite-imports": "^2.0.3",
"rollup": "^2.0.2",
"tosource": "^1.0.0",
"wargs": "^0.9.1"
},
"devDependencies": {
"@swc/core": "^1.2.38",
"acorn": ">=6.4.1",
"asciidoctor.js": "^1.5.7",
"autoprefixer": "^10.0.2",
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.24.0",
"buble": "^0.20.0",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"coffeescript": "^2.3.1",
"ejs": "^3.0.1",
"eslint": "^7.8.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"fast-async": "^7.0.6",
"gen-pug-source-map": "^1.0.0",
"handlebars": "^4.7.6",
"kramed": ">=0.5.5",
"less": "^3.12.2",
"liquid": "^5.0.0",
"minimist": ">=1.2.3",
"mocha": "^8.1.3",
"node-fetch": ">=2.6.1",
"node-sass": "^5.0.0",
"nodent": "^3.1.3",
"nyc": "^15.1.0",
"postcss": "^8.1.7",
"pug": "^3.0.0",
"rimraf": ">=2.5.4",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-node-resolve": "^5.0.1",
"styl": ">=0.2.9",
"sucrase": "^3.9.5",
"traceur": "^0.0.111",
"typescript": "^4.0.2",
"websocket-extensions": ">=0.1.4",
"yargs-parser": ">=13.1.2"
},
"optionalDependencies": {
"live-server": "^1.2.1",
"node-notifier": "^8.0.0"
}
}