forked from bs-community/skinview-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.66 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
{
"name": "@mcskinhistory/skinview-utils",
"version": "0.6.0",
"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": "^13.0.0",
"@rollup/plugin-image": "^2.0.5",
"@rollup/plugin-node-resolve": "^8.0.1",
"@rollup/plugin-typescript": "^4.1.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"chai": "^4.2.0",
"eslint": "^7.2.0",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"mocha": "^8.0.1",
"puppeteer": "^3.3.0",
"rimraf": "^3.0.2",
"rollup": "^2.16.1",
"typescript": "^3.9.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"files": [
"build"
],
"license": "MIT",
"author": "Haowei Wen <[email protected]> (https://github.com/yushijinhun)",
"contributors": [
"Sean Boult <[email protected]> (https://github.com/Hacksore)",
"Pig Fang <[email protected]> (https://github.com/g-plane)",
"Kent Rasmussen <[email protected]> (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/mcskinhistory/skinview-utils.git"
}
}