-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.15 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.15 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@klayver/poe-itemtext-parser",
"version": "1.0.1",
"description": "Parser for Path of Exile clipboard item texts.",
"scripts": {
"build": "tsc && tscpaths -p tsconfig.json -s ./src -o ./dist",
"build:docs": "typedoc",
"test": "mocha",
"test:ci": "mocha",
"test:coverage": "nyc mocha",
"lint": "eslint src/",
"lint:fix": "eslint --fix src/",
"prettier": "prettier --write \"**/*.ts\""
},
"keywords": [
"pathofexile",
"poe",
"parser",
"itemtext"
],
"author": {
"name": "Tobias Hoffmann",
"email": "tobiashoffmann7@gmail.com",
"url": "http://github.com/klayver"
},
"main": "dist/index.js",
"files": [
"dist/**"
],
"publishConfig": {
"access": "public"
},
"repository": "git://github.com/klayveR/poe-itemtext-parser.git",
"license": "MIT",
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.10",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/chai": "^4.2.15",
"@types/chai-as-promised": "^7.1.3",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.1",
"@types/node": "^14.14.35",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"semantic-release": "^17.4.2",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tscpaths": "0.0.9",
"typedoc": "^0.20.34",
"typescript": "^4.2.3"
},
"dependencies": {
"typescript-memoize": "^1.0.0"
},
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"text",
"lcov"
],
"extends": "./nyc-config.js"
},
"release": {
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/changelog",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"message": "release: <%= nextRelease.version %> [skip ci]\n\n${nextRelease.notes}",
"assets": [
"package.json",
"CHANGELOG.md"
]
}
]
]
}
}