generated from es-lynn/npm-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 917 Bytes
/
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
{
"name": "@aelesia/npx-template",
"version": "0.0.1",
"description": "Template for NPX packages",
"author": "aelesia",
"license": "MIT",
"repository": "https://github.com/aelesia/npx-template",
"bin": "dist/index.js",
"scripts": {
"prepublish": "tsc --incremental false",
"compile": "tsc --noEmit && eslint src/**/*.ts tests/**/*.ts index.ts",
"test": "jest",
"test_coverage": "jest --collectCoverage",
"lint": "eslint src/**/*.ts tests/**/*.ts index.ts --fix"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^13.1.4",
"@types/jest": "^24.0.23",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.10.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
}
}