-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 2.19 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "three-fisheye",
"version": "1.0.6",
"description": "fisheye image to sphere or panorama projection",
"scripts": {
"setup": "npm install -g http-server;",
"init": "npm run update; npm run mkdir; npm run build",
"update": "npm run reset; npm update",
"reset": "rm -rf node_modules",
"mkdir": "mkdir lib dist 2>/dev/null",
"clean": "rm -rf lib/* dist/* test/*.js; mkdir -p dist",
"build": "npm run clean && tsc -p .; npm run browserify",
"start": "http-server . -s & tsc -w -p .& npm run watchify",
"stop": "killall -- node */tsc -w -p",
"browserify": "browserify lib/index.js --standalone Fisheye -o dist/Fisheye.js",
"watchify": "watchify lib/index.js --standalone Fisheye -o dist/Fisheye.js -v",
"test": "tsc; espower lib/test.js > lib/test.tmp; mv -f lib/test.tmp lib/test.js; browserify lib/test.js -o test/test.js",
"example": "tsc; browserify lib/example_perspective.js -o test/example_perspective.js",
"examples": "tsc; for file in `find lib -name 'example_*.js' -type f -printf '%f\\n'`; do browserify lib/$file -o test/$file; done",
"check": "tsc -w --noEmit -p ./",
"lint": "tslint -c ./tslint.json --project ./tsconfig.json --type-check",
"doc": "typedoc --mode modules --out doc --disableOutputCheck"
},
"repository": {
"type": "git",
"url": "git+https://github.com/legokichi/threejs-fisheye.git"
},
"keywords": [],
"author": "legokichi duckscallion",
"license": "MIT",
"bugs": {
"url": "https://github.com/legokichi/threejs-fisheye/issues"
},
"homepage": "https://github.com/legokichi/threejs-fisheye#readme",
"dependencies": {
"three": "^0.83.0",
"three-orbit-controls": "^82.1.0"
},
"devDependencies": {
"@types/three": "0.0.28",
"dat-gui": "^0.5.0",
"@types/dat-gui": "^0.6.2",
"empower": "^1.2.1",
"espower-cli": "^1.1.0",
"power-assert": "^1.4.1",
"power-assert-formatter": "^1.4.1",
"qunit-tap": "^1.5.1",
"qunitjs": "^2.0.1",
"browserify": "^13.1.0",
"tslint": "^3.15.1",
"typedoc": "^0.5.3",
"typescript": "^2.0.3",
"watchify": "^3.7.0",
"@types/qunit": "^2.0.31"
},
"main": "./lib/index.js",
"typings": "./lib/index.d.ts"
}