-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.64 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
{
"name": "skinview2d",
"version": "0.0.0",
"description": "Minecraft 2D skin renderer",
"main": "libs/skinview2d.js",
"scripts": {
"clean": "rimraf libs bundles",
"build:modules": "tsc -p .",
"build:bundles": "rollup -c",
"build": "npm run build:modules && npm run build:bundles",
"test:lint": "eslint --ext .ts src",
"test": "npm run test:lint",
"dev:watch:modules": "tsc -w -p .",
"dev:watch:bundles": "rollup -w -c",
"dev:serve": "ws",
"dev": "npm-run-all --parallel dev:watch:modules dev:watch:bundles dev:serve",
"prepublishOnly": "npm run clean && npm run build",
"storybook": "start-storybook -s ./public -p 6006",
"build-storybook": "build-storybook"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bs-community/skinview2d.git"
},
"author": "Haowei Wen <yushijinhun@gmail.com> (https://github.com/yushijinhun)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bs-community/skinview2d/issues"
},
"homepage": "https://github.com/bs-community/skinview2d#readme",
"dependencies": {
"babel-loader": "^8.0.6",
"skinview-utils": "^0.2.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@rollup/plugin-node-resolve": "^7.0.0",
"@rollup/plugin-typescript": "^3.0.0",
"@storybook/html": "^5.3.10",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"babel-loader": "^8.0.6",
"eslint": "^6.8.0",
"local-web-server": "^3.0.7",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.1",
"rollup": "^1.31.0",
"rollup-plugin-terser": "^5.2.0",
"typescript": "^3.7.5"
}
}