-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1010 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
31
32
33
34
35
36
{
"name": "ts-lib-skeleton",
"version": "0.0.2",
"main": "./dist/index.js",
"scripts": {
"test": "jest --config jestconfig.json --coverage",
"build": "rimraf ./dist && cross-env NODE_ENV=production webpack",
"release": "rimraf ./dist && cross-env NODE_ENV=production webpack && yarn publish",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"keywords": [],
"author": "Jcr",
"license": "MIT",
"description": "A simple typescript library skeleton.",
"devDependencies": {
"@types/jest": "^26.0.19",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"ts-loader": "^8.0.14",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.1.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
},
"files": [
"dist"
],
"publishConfig": {
"registry": "your publish registry"
}
}