-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 2.34 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
{
"name": "pano",
"version": "3.0.0",
"description": "Easily add multiple 360-panoramic viewers to a page using Panolens.js",
"main": "dist/pano.js",
"jsnext:main": "src/pano.js",
"type": "module",
"scripts": {
"clean": "rimraf dist lib coverage",
"lint": "standard ./src/**/*.js",
"fix": "npm run lint -- --fix",
"copy": "node ./bin/copy.cjs",
"test": "mocha -R spec ./test/setup.js ./test/**/*.spec.js",
"test:cov": "babel-node $(npm bin)/isparta cover --report lcov ./node_modules/mocha/bin/_mocha -- ./test --recursive",
"build:lib": "babel src --out-dir lib",
"build:umd": "webpack ./src/index.js --config webpack-development.config.cjs",
"build:umd:min": "webpack ./src/index.js --config webpack-production.config.cjs",
"build": "run-s clean copy build:lib build:umd build:umd:min",
"watch:umd": "npm run build:umd -- --stats --progress --colors --watch",
"watch:lib": "npm run build:lib -- --stats --progress --colors --watch",
"watch": "npm run watch:umd",
"prepublish": "run-s clean test build"
},
"packageManager": "yarn@3.6.0",
"engines": {
"node": "19",
"npm": "9.7.1",
"yarn": "3.6.0"
},
"authors": [
{
"name": "Sinan Bolel",
"url": "https://sinanbolel.com"
}
],
"contributors": [
{
"name": "Prescott Prue",
"url": "https://github.com/prescottprue"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:sbolel/pano.git"
},
"bugs": {
"url": "https://github.com/sbolel/pano/issues"
},
"homepage": "http://sbolel.github.io/pano/",
"keywords": [
"360",
"cardboard",
"jquery",
"pano",
"panolens",
"panorama",
"panoramic",
"three",
"three.js",
"vr"
],
"dependencies": {
"panolens": "^0.12.1",
"three": "^0.155.0"
},
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.0",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"@babel/runtime": "^7.22.15",
"babel-loader": "^9.1.3",
"chai": "^4.3.8",
"fs-extra": "^11.1.1",
"isparta": "^4.1.1",
"jsdom": "^22.1.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.0.2",
"rimraf": "^5.0.5",
"standard": "^17.1.0",
"terser-webpack-plugin": "^5.3.9",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}