-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.58 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
{
"name": "skinview-utils",
"version": "0.7.1",
"description": "Utilities for working with Minecraft skins",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc --declaration --outDir build --sourceMap -p .",
"lint": "eslint --ext .ts src",
"test": "npm run lint && karma start karma.conf.cjs",
"prepublishOnly": "rimraf build && npm run build"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-image": "^2.1.1",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-typescript": "^8.3.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"chai": "^4.3.4",
"eslint": "^8.6.0",
"karma": "^6.3.10",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.7",
"mocha": "^9.1.3",
"puppeteer": "^13.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.63.0",
"typescript": "^4.9.5"
},
"files": [
"build"
],
"license": "MIT",
"author": "Haowei Wen <yushijinhun@gmail.com> (https://github.com/yushijinhun)",
"contributors": [
"Sean Boult <hacksore@mcskinsearch.com> (https://github.com/Hacksore)",
"Pig Fang <g-plane@hotmail.com> (https://github.com/g-plane)",
"Kent Rasmussen <hyprkookeez@gmail.com> (https://github.com/earthiverse)"
],
"homepage": "https://github.com/bs-community/skinview-utils#readme",
"bugs": {
"url": "https://github.com/bs-community/skinview-utils/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bs-community/skinview-utils.git"
}
}