forked from eta-dev/etajs-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.78 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
{
"name": "etajs-cli",
"version": "0.1.0",
"description": "A CLI for Eta templates",
"main": "dist/cli.js",
"bin": {
"eta": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"format": "prettier --write src/**/*.ts test/**/*.ts",
"lint": "eslint src/**/*.ts test/**/*.ts",
"test": "jest --coverage",
"test:prod": "eslint src/**/*.ts test/**/*.ts && jest --coverage",
"test:watch": "jest --coverage --watch",
"report-coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eta-dev/etajs-cli.git"
},
"keywords": [
"eta",
"eta-templates",
"cli"
],
"author": "shadowtime2000",
"license": "MIT",
"bugs": {
"url": "https://github.com/eta-dev/etajs-cli/issues"
},
"homepage": "https://github.com/eta-dev/etajs-cli#readme",
"devDependencies": {
"@types/node": "^14.14.0",
"@types/yargs": "^15.0.9",
"@types/yargs-parser": "^15.0.0",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"coveralls": "^3.1.0",
"eslint": "^7.11.0",
"eslint-config-eta-dev": "^1.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eta": "^1.11.0",
"jest": "^26.6.0",
"prettier": "^2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3",
"yargs-parser": "^20.2.3"
},
"dependencies": {
"yargs": "^16.1.0"
},
"peerDependencies": {
"eta": "1.x.x"
},
"jest": {
"transform": {
".(ts)": "ts-jest"
},
"testEnvironment": "node",
"coveragePathIgnore": [
"/node_modules/",
"/test/"
]
}
}