-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 739 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 739 Bytes
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
{
"name": "templafy",
"version": "0.1.3",
"description": "cli for generating code from templates",
"main": "index.js",
"scripts": {
"test": "mocha 'src/**/*.spec.*'"
},
"author": "OzoneTank",
"homepage": "https://github.com/OzoneTank/templafy",
"bugs": "https://github.com/OzoneTank/templafy/issues",
"keywords": [
"template",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/OzoneTank/templafy.git"
},
"license": "MIT",
"bin": {
"templafy": "./index.js"
},
"dependencies": {
"colors": "^1.1.2",
"lodash": "^4.17.5",
"readline-sync": "^1.4.9"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.0.1",
"mock-require": "^3.0.1"
}
}