-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.29 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
{
"name": "three-laser-pointer",
"version": "1.2.4-dev.5",
"description": "Laser pointer object using three.js",
"main": "dist/three-laser-pointer.min.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"dist": "es-pack build -d ./dist -m umd esm esm-compat",
"build": "es-pack build -m umd",
"build:esm": "es-pack build -m esm",
"build:esm:compat": "es-pack build -m esm-compat",
"build:examples:terrains": "es-pack build ./examples/demo-terrains -d ./examples/demo-terrains/dist -m esm",
"test": "npm run test:verify && npm run test:main",
"test:verify": "es-pack build -m umd esm esm-compat --verify",
"test:main": "es-pack test --node --browser",
"dev": "es-pack build --dev"
},
"repository": {
"type": "git",
"url": "https://github.com/w3reality/three-laser-pointer.git"
},
"keywords": [
"three",
"laser",
"pointer"
],
"author": "j-devel",
"license": "MIT",
"bugs": {
"url": "https://github.com/w3reality/three-laser-pointer/issues"
},
"homepage": "https://github.com/w3reality/three-laser-pointer",
"devDependencies": {
"es-pack-js": "0.5.14",
"three": "^0.137.0"
}
}