-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.9 KB
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
{
"name": "@tlib/package-template",
"version": "1.2.1",
"description": "an example package published from template for typescript libraries",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/es/index.js",
"types": "dist/index.d.ts",
"keywords": [
"tlib",
"typescript",
"semantic-release",
"codegen",
"template"
],
"author": {
"name": "EqualMa",
"email": "equalma@outlook.com",
"url": "https://github.com/EqualMa"
},
"repository": {
"type": "git",
"url": "https://github.com/tlibjs/package-template.git"
},
"scripts": {
"test": "jest",
"test-ts-node": "ts-node scripts/test-ts-node.ts -s --help ./src/some.ts",
"precommit": "lint-staged",
"lint:fix": "eslint --cache --max-warnings 0 --fix",
"ensure-linted": "eslint --max-warnings 0 .",
"semantic-release": "semantic-release",
"build": "yarn run clean && rollup -c",
"clean": "rimraf dist",
"prepare": "husky install"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@tlib/scripts": "^1.0.0",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"babel-jest": "^27.3.1",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "2.4.1",
"rimraf": "^3.0.2",
"rollup": "^2.59.0",
"rollup-plugin-dts": "^4.0.0",
"semantic-release": "^18.0.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"core-js": "^3.19.0",
"tslib": "^2.3.1"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
}
}