-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "three_js_outline",
"version": "1.0.1",
"description": "Jump Flood Based Object Outlining",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline --open",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bzztbomb/three_js_outline.git"
},
"keywords": [],
"author": "Brian Richardson (bzztbomb)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bzztbomb/three_js_outline/issues"
},
"homepage": "https://github.com/bzztbomb/three_js_outline/#readme",
"devDependencies": {
"awesome-typescript-loader": "latest",
"css-loader": "latest",
"html-webpack-plugin": "latest",
"progress-bar-webpack-plugin": "latest",
"style-loader": "latest",
"typescript": "latest",
"webpack": "latest",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "latest"
},
"dependencies": {
"three": "latest"
}
}