-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.45 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
{
"name": "@derock.ir/epubjs-plus",
"version": "1.1.6",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "npm run build",
"test": "echo 'done'",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hebertcisco/ts-npm-package-boilerplate.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"license": "MIT",
"files": [
"lib/**/*"
],
"dependencies": {
"debounce": "^1.2.1",
"epubjs": "^0.3.93",
"eventemitter3": "^4.0.7",
"file-dialog": "^0.0.8",
"uuid": "^8.3.2"
},
"peerDependencies": {
"localforage": "^1.10.0"
},
"devDependencies": {
"@types/debounce": "^1.2.1",
"@types/jest": "27.4.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "5.10.0",
"@typescript-eslint/parser": "5.10.0",
"eslint": "7.32.0",
"eslint-plugin-jest": "25.7.0",
"jest": "27.4.7",
"prettier": "2.5.1",
"release-it": "^15.2.0",
"ts-jest": "27.1.3",
"typescript": "4.5.5"
}
}