-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.51 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
{
"name": "@habx/tslib-template",
"version": "0.1.0",
"description": "Typescript library template",
"main": "./dist/index.cjs.js",
"module": "./dist/esm/index.js",
"types": "./dist/typings/index.d.ts",
"sideEffects": false,
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs",
"build-ci": "npm run build",
"build:esm": "tsc",
"build:cjs": "bili",
"build:watch": "npm run clean && tsc --watch",
"generate:snapshots": "node ./scripts/generateSnapshot.js",
"lint": "eslint \"src/**\"",
"test": "jest",
"test:coverage": "jest --coverage",
"type:coverage": "tscov"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/habx/lib-template.git"
},
"author": "HABX Front End Team",
"license": "ISC",
"bugs": {
"url": "https://github.com/habx/lib-template/issues"
},
"homepage": "https://github.com/habx/lib-template#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
]
},
"devDependencies": {
"@habx/config-ci-front": "^0.19.0",
"@habx/eslint-config-client": "^6.9.0",
"bili": "^5.0.5",
"husky": "^5.2.0",
"lint-staged": "^13.0.3",
"rimraf": "^3.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.4.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}