This repository was archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.32 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.32 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
{
"name": "azusa",
"version": "1.0.3",
"description": "",
"main": "./lib/azusa.js",
"scripts": {
"clean": "rimraf lib && rimraf example",
"start": "webpack-dev-server --config webpack.config.js",
"build": "npm run build:m",
"build:m": "rimraf lib && webpack --config webpack.config.module.js",
"build:e": "rimraf example && webpack --config webpack.config.example.js && webpack-dev-server --config webpack.config.example.js"
},
"author": "EYHN",
"license": "GPL-2.0",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/polyfill": "7.4.4",
"@babel/preset-env": "^7.4.5",
"@types/node": "12.0.7",
"babel-loader": "8.0.6",
"declaration-bundler-webpack-plugin": "1.0.3",
"file-loader": "4.0.0",
"fork-ts-checker-webpack-plugin": "1.3.5",
"html-webpack-plugin": "3.2.0",
"rimraf": "2.6.3",
"source-map-loader": "0.2.4",
"ts-loader": "6.0.2",
"typescript": "3.5.1",
"uglify-js": "3.6.0",
"url-loader": "2.0.0",
"webpack": "^4.33.0",
"webpack-bundle-analyzer": "^3.3.2",
"webpack-cli": "3.3.3",
"webpack-dev-server": "^3.7.1"
},
"dependencies": {
"three": "0.105.2"
},
"types": "./lib/azusa.d.ts",
"typings": "./lib/azusa.d.ts",
"browserslist": [
"last 2 chrome version"
]
}