This repository was archived by the owner on May 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "SpericalViewer",
"version": "0.3.15",
"description": "Viewer for CrossCode content",
"repository": {
"type": "git",
"url": "https://github.com/CCDirectLink/SpericalViewer.git"
},
"main": "app/main.js",
"author": "CCDirectLink",
"license": "MIT",
"scripts": {
"pretest": "eslint .",
"unit": "mocha --recursive scripts/tests",
"test": "mocha --recursive scripts/tests",
"postinstall": "node scripts/setup/postinstall.js init",
"start": "electron .",
"pack": "build --dir",
"pack:all": "build --dir --mac --win --linux",
"pack:mac": "build --dir --mac",
"pack:win": "build --dir --win",
"pack:linux": "build --dir --linux",
"dist": "build",
"dist:all": "build --mac --win --linux",
"lint": "eslint --fix .",
"lint:fix": "eslint --fix .",
"precommit-msg": "echo 'Running Pre-commit check...' && exit 0"
},
"pre-commit": [
"precommit-msg",
"test"
],
"build": {
"appId": "com.electron.ccdirectlink.sperical-viewer",
"productName": "SpericalViewer",
"mac": {
"category": "service"
},
"dmg": {
"title": "SpericalViewer ${version}"
},
"win": {
"target": "portable"
}
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"electron": "^9.0.2",
"electron-builder": "^22.7.0",
"eslint": "^7.1.0",
"mocha": "^7.2.0",
"pre-commit": "^1.2.2"
}
}