-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.86 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": "steelseries-rose-gauge",
"version": "1.2.0",
"description": "Wind Rose gauge addon for steelseries gauges library.",
"homepage": "https://github.com/ricky-rebo/SteelSeries-Rose-Gauge#readme",
"main": "dist/steelseries-rose.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"watch": "webpack --watch",
"build": "npm run build:prod",
"test": "jest --config jestconfig.json",
"lint": "npx eslint --ext .ts src/",
"docs": "api-extractor run --local --verbose && api-documenter markdown -i temp/ -o docs/",
"lint:fix": "npx eslint --fix --ext .ts src/",
"build:dev": "webpack --mode=development -c webpack.config.js",
"build:prod": "webpack --mode=production -c webpack.config.js",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"steelseries",
"rose-chart",
"wind-rose",
"canvas"
],
"author": "Riccardo Rebottini <ricky@rebottini.it> (https://github.com/ricky-rebo)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ricky-rebo/SteelSeries-Rose-Gauge"
},
"bugs": {
"url": "https://github.com/ricky-rebo/SteelSeries-Rose-Gauge/issues"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/steelseries": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^7.24.0",
"eslint-plugin-tsdoc": "^0.2.14",
"eslint-webpack-plugin": "^2.5.3",
"jest": "^26.6.3",
"jest-canvas-mock": "^2.3.1",
"ts-jest": "^26.5.4",
"ts-loader": "^8.1.0",
"typescript": "^4.2.4",
"webpack": "^5.32.0",
"webpack-cli": "^4.9.1"
},
"peerDependencies": {
"steelseries": "^1.0.7"
}
}