-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 834 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/npm-template",
"version": "0.2.0",
"description": "Template for NPM packages",
"author": "",
"license": "MIT",
"repository": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "tsc --incremental false",
"compile": "tsc && yarn lint",
"test": "jest",
"test_coverage": "jest --collectCoverage",
"lint": "eslint . --ext .ts --fix --ignore-pattern '/dist/*/*'"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.0",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"eslint": "^7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"ts-jest": "^26.1.0",
"typescript": "^3.9.5"
}
}