-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.4 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
{
"name": "litmus",
"version": "0.1.2",
"description": "Litmus visual test runner for Javascript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "tsc",
"start": "electron bin/src",
"build": "npm-run-all build:*",
"build:0": "shx mkdir -p bin/src/",
"build:1": "parcel build src/ui/index.html --no-minify --target electron --public-url ./ --out-dir bin/src/ui",
"build:2": "parcel build src/ui/backgroundTestRunnerWorker.html --no-minify --target electron --public-url ./ --out-dir bin/src/ui",
"build:3": "parcel build src/index.ts --no-minify --target electron --public-url ./ --out-dir bin/src",
"build:4": "npm run copy-resources",
"build:5": "shx cp package.json bin/src/",
"clean": "npm-run-all clean:*",
"clean:0": "shx rm -rf bin",
"clean:1": "shx rm -rf dist",
"clean:2": "shx rm -rf .cache",
"pack": "npm-run-all pack:*",
"pack:0": "npm run build",
"pack:1": "shx cp electron-builder.json bin/src/",
"pack:2": "electron-builder build --project bin/src",
"copy-resources": "npm-run-all copy-resources:*",
"copy-resources:0": "shx mkdir -p bin/src/res/icons",
"copy-resources:1": "shx cp res/failBadge_taskbar.png bin/src/res/",
"copy-resources:2": "shx cp res/passBadge_taskbar.png bin/src/res/",
"copy-resources:3": "shx cp res/icons/48x48.png bin/src/res/icons/"
},
"keywords": [
"litmus",
"test",
"unit",
"testing",
"mocha",
"jasmine",
"chai",
"js",
"javascript",
"mock",
"spy"
],
"author": "Will Westrop",
"license": "MIT",
"homepage": "https://litmus-js.app/",
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/lodash": "^4.14.152",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@types/react-dom": "^16.9.8",
"chai": "^4.2.0",
"devtron": "^1.4.0",
"electron": "9.0.0",
"electron-builder": "^22.6",
"node-sass": "^4.14.1",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"serve": "^11.3.1",
"shx": "^0.3.2",
"ts-mockito": "^2.5.0",
"typescript": "^3.9.3"
},
"dependencies": {
"electron-localshortcut": "^3.2.1",
"is-electron-renderer": "^2.0.1",
"lodash": "^4.17.15",
"mocha": "^7.2.0",
"react": "^16.13.1",
"react-animate-height": "^2.0.21",
"react-dom": "^16.13.1",
"stdlib": "^0.6.0"
}
}