forked from mistic100/Photo-Sphere-Viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "photo-sphere-viewer",
"version": "4.0.0-SNAPSHOT",
"description": "A JavaScript library to display Photo Sphere panoramas",
"homepage": "https://photo-sphere-viewer.js.org",
"main": "dist/photo-sphere-viewer.js",
"files": [
"src/",
"dist/"
],
"authors": [
{
"name": "Jérémy Heleine",
"email": "jeremy.heleine@gmail.com",
"homepage": "http://jeremyheleine.me"
},
{
"name": "Damien \"Mistic\" Sorel",
"email": "contact@git.strangeplanet.fr",
"homepage": "https://www.strangeplanet.fr"
}
],
"keywords": [
"photosphere",
"panorama",
"threejs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mistic100/Photo-Sphere-Viewer.git"
},
"dependencies": {
"three": "^0.127.0",
"uevent": "~2.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/preset-env": "^7.7.4",
"@babel/register": "^7.7.4",
"@csstools/postcss-sass": "https://github.com/sinankeskin/postcss-sass#master",
"@pixi/jsdoc-template": "^2.5.1",
"@rollup/plugin-alias": "^3.0.1",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-inject": "^4.0.1",
"@rollup/plugin-replace": "^2.3.1",
"@vuepress/plugin-active-header-links": "^1.2.0",
"@vuepress/plugin-back-to-top": "^1.2.0",
"@vuepress/plugin-google-analytics": "^1.2.0",
"autoprefixer": "^10.2.4",
"axios": "^0.21.0",
"babel-eslint": "^10.0.3",
"cpx": "^1.5.0",
"date-fns": "^2.9.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.21.2",
"jsdoc": "^3.6.3",
"live-server": "^1.2.0",
"marked": "^2.0.0",
"mocha": "^8.0.1",
"ngrok": "^4.0.0",
"nosleep.js": "^0.12.0",
"npm-run-all": "^4.1.3",
"postcss": "^8.2.6",
"postcss-banner": "^4.0.0",
"promise-polyfill": "^8.1.3",
"raw-loader": "^4.0.0",
"rollup": "^2.36.2",
"rollup-plugin-local-resolve": "^1.0.7",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-string": "^3.0.0",
"stylelint": "^13.0.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-scss": "^3.13.0",
"vue-material": "^1.0.0-beta-11",
"vue-slider-component": "^3.2.11",
"vue-swatches": "^2.1.0",
"vuepress": "^1.4.0",
"vuepress-plugin-element-tabs": "^0.2.8"
},
"scripts": {
"compile": "npm-run-all compile:*",
"compile:prepare": "cpx \"node_modules/three/examples/jsm/**/*\" three-examples/",
"compile:rollup": "rollup --config rollup.config.js",
"doc": "npm-run-all doc:*",
"doc:clean": "rm -rf public/*",
"doc:vuepress": "vuepress build docs",
"doc:jsdoc": "jsdoc --configure .jsdoc.json --destination public/api src",
"doc:assets": "cpx \"example/assets/*\" public/assets && cpx example/sphere.jpg public/assets && cpx example/sphere_small.jpg public/assets && cpx example/sphere_cropped.jpg public/assets && cpx \"example/cubemap/*\" public/assets/cubemap",
"test": "npm-run-all --parallel test:*",
"test:mocha": "mocha --require @babel/register --recursive \"src/**/*.spec.js\"",
"test:eslint": "eslint src --ignore-path .gitignore --ignore-pattern \"*.spec.js\"",
"test:sasslint": "stylelint \"src/**/*.scss\"",
"start": "npm-run-all --parallel dev:**",
"start:doc": "vuepress dev docs",
"start:remote": "ngrok http 8080",
"dev:serve": "live-server --watch=dist,example --open=example",
"dev:watch": "npm run compile:rollup -- --watch"
}
}