forked from mockoon/mockoon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 3.95 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "mockoon",
"description": "Mock API in seconds",
"version": "1.4.0",
"author": {
"name": "Guillaume Monnet",
"email": "[email protected]",
"url": "https://255kb.com/"
},
"license": "MIT",
"repository": "https://github.com/mockoon/mockoon",
"homepage": "https://mockoon.com",
"build": {
"appId": "com.mockoon.app",
"productName": "Mockoon",
"directories": {
"output": "packages",
"app": "dist"
},
"win": {
"target": "nsis",
"publisherName": "Guillaume Monnet",
"rfc3161TimeStampServer": "http://sha256timestamp.ws.symantec.com/sha256/timestamp"
},
"nsis": {
"artifactName": "mockoon.setup.${version}.${ext}"
},
"mac": {
"target": "dmg",
"type": "distribution",
"artifactName": "mockoon.setup.${version}.${ext}"
},
"linux": {
"target": "AppImage",
"category": "Development",
"icon": "build"
}
},
"scripts": {
"lint": "ng lint --type-check",
"test": "ng test",
"test-spectron": "ts-mocha -p test/tsconfig.spec.json --timeout 10000 test/**/*.spec.ts",
"setversion": "node ./scripts/version-bump.js",
"serve:electron": "electron ./dist --serve",
"serve:app": "ng build --configuration=development --watch --output-hashing=all",
"build:dev": "rm -rf ./dist && ng build --prod --configuration=development",
"build:prod": "rm -rf ./dist && ng build --prod --configuration=production",
"clean-packages": "rm -rf ./packages",
"package:win": "npm run clean-packages && electron-builder --win",
"package:linux": "npm run clean-packages && electron-builder --linux",
"package:mac": "npm run clean-packages && electron-builder --mac"
},
"dependencies": {
"@angular/animations": "7.1.1",
"@angular/common": "7.1.1",
"@angular/compiler": "7.1.1",
"@angular/core": "7.1.1",
"@angular/forms": "7.1.1",
"@angular/http": "7.1.1",
"@angular/platform-browser": "7.1.1",
"@angular/platform-browser-dynamic": "7.1.1",
"@angular/router": "7.1.1",
"@ng-bootstrap/ng-bootstrap": "4.0.0",
"array-move": "1.0.0",
"bootstrap": "4.1.3",
"brace": "0.11.1",
"core-js": "2.5.7",
"dummy-json": "2.0.0",
"electron-is-dev": "1.0.1",
"electron-json-storage": "4.1.0",
"electron-window-state": "5.0.3",
"express": "4.16.4",
"firebase": "5.6.0",
"http-proxy-middleware": "0.19.1",
"killable": "1.0.1",
"lodash": "4.17.11",
"material-design-icons": "3.0.1",
"mime-types": "2.1.21",
"ng2-ace-editor": "0.3.8",
"ng2-dragula": "2.1.1",
"ngx-markdown": "7.0.2",
"object-path": "0.11.4",
"request": "2.88.0",
"rxjs": "6.3.3",
"semver": "5.6.0",
"spinthatshit": "1.0.4",
"uuid": "3.3.2",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-builders/custom-webpack": "7.0.0",
"@angular-builders/dev-server": "7.0.0",
"@angular-devkit/build-angular": "0.11.0",
"@angular-devkit/core": "7.1.0",
"@angular/cli": "7.1.0",
"@angular/compiler-cli": "7.1.1",
"@angular/fire": "5.1.1",
"@angular/language-service": "7.1.1",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/jasmine": "3.3.0",
"@types/jasminewd2": "2.0.6",
"@types/mocha": "5.2.5",
"@types/node": "10.12.10",
"@types/uuid": "^3.4.5",
"@types/webdriverio": "4.13.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"codelyzer": "4.5.0",
"electron": "3.0.10",
"electron-builder": "20.38.2",
"electron-reload": "1.3.0",
"istanbul-instrumenter-loader": "3.0.1",
"jasmine-core": "2.99.1",
"jasmine-spec-reporter": "4.2.1",
"karma": "3.1.1",
"karma-chrome-launcher": "2.2.0",
"karma-coverage-istanbul-reporter": "2.0.4",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "0.2.2",
"mocha": "5.2.0",
"replace-in-file": "3.4.2",
"spectron": "5.0.0",
"ts-mocha": "2.0.0",
"tslint": "5.11.0",
"typescript": "3.1.6"
}
}