skinview3d/package.json

70 lines
2.1 KiB
JSON
Raw Normal View History

2017-10-01 14:00:45 +02:00
{
"name": "skinview3d",
2018-07-06 09:39:15 +02:00
"version": "1.1.0-alpha.4",
2017-10-01 14:00:45 +02:00
"description": "Three.js powered Minecraft skin viewer",
2018-01-06 12:31:34 +01:00
"module": "build/skinview3d.module.js",
"main": "build/skinview3d.js",
2018-02-04 15:15:03 +01:00
"typings": "types/skinview3d.d.ts",
2017-10-01 14:00:45 +02:00
"scripts": {
2018-07-21 05:46:42 +02:00
"build": "tsc --p tsconfig.json && rollup -c tools/rollup.module.js && rollup -c tools/rollup.browser.js && rollup -c tools/rollup.browser.min.js",
2018-07-06 09:59:49 +02:00
"prepare": "npm test && rimraf build && npm run build",
2018-07-21 14:52:02 +02:00
"lint": "tslint -c tslint.json src/**.ts",
"dev": "npm-run-all --parallel watch serve",
2018-02-12 01:01:40 +01:00
"watch": "rollup -w -c tools/rollup.browser.js",
"test": "karma start && npm run lint",
"serve": "ws"
2017-10-01 14:00:45 +02:00
},
"repository": {
"type": "git",
2018-06-30 17:32:08 +02:00
"url": "git+https://github.com/bs-community/skinview3d.git"
2017-10-01 14:00:45 +02:00
},
2018-02-10 07:05:07 +01:00
"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)",
2018-02-12 08:52:48 +01:00
"printempw <h@prinzeugen.net> (https://github.com/printempw)",
2018-02-10 07:05:07 +01:00
"Kent Rasmussen <hyprkookeez@gmail.com> (https://github.com/earthiverse)"
],
"license": "MIT",
2017-10-01 14:00:45 +02:00
"bugs": {
2018-06-30 17:32:08 +02:00
"url": "https://github.com/bs-community/skinview3d/issues"
2017-10-01 14:00:45 +02:00
},
2018-06-30 17:32:08 +02:00
"homepage": "https://github.com/bs-community/skinview3d",
"files": [
"types",
"build"
],
2017-10-01 14:00:45 +02:00
"dependencies": {
2018-07-06 09:26:01 +02:00
"three": "^0.94.0"
2017-10-01 14:00:45 +02:00
},
"devDependencies": {
2018-07-21 14:52:02 +02:00
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
2018-07-06 09:26:01 +02:00
"@types/three": "^0.92.12",
2017-10-01 14:00:45 +02:00
"babel-cli": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
2018-07-06 06:27:50 +02:00
"babel-preset-env": "^1.7.0",
2018-07-06 05:32:46 +02:00
"chai": "^4.1.2",
2018-07-06 09:26:01 +02:00
"eslint": "^5.0.1",
2018-07-06 05:32:46 +02:00
"karma": "^2.0.4",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-webpack": "^3.0.0",
2018-07-06 06:27:50 +02:00
"local-web-server": "^2.5.4",
2018-07-06 05:32:46 +02:00
"mocha": "^5.2.0",
"npm-run-all": "^4.1.2",
2018-07-06 05:32:46 +02:00
"puppeteer": "^1.5.0",
2018-07-06 09:59:49 +02:00
"rimraf": "^2.6.2",
2018-07-06 09:26:01 +02:00
"rollup": "^0.62.0",
2018-05-05 15:52:07 +02:00
"rollup-plugin-babel": "^3.0.4",
2018-07-06 09:26:01 +02:00
"rollup-plugin-license": "^0.7.0",
2018-04-15 05:40:01 +02:00
"rollup-plugin-node-resolve": "^3.3.0",
2018-07-06 09:26:01 +02:00
"rollup-plugin-uglify": "^4.0.0",
2018-05-05 15:52:07 +02:00
"tslint": "^5.10.0",
2018-04-22 04:25:33 +02:00
"typescript": "^2.8.3",
2018-07-06 05:32:46 +02:00
"uglify-es": "^3.3.10",
2018-07-21 05:46:42 +02:00
"url-loader": "^1.0.1",
"webpack": "^4.15.1"
2017-10-01 14:00:45 +02:00
}
}