-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.15 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
{
"name": "spectron-demo",
"version": "1.0.0",
"description": "Spectron TypeScript Starter for testing Electron application written with Typescript",
"scripts": {
"lint": "tslint -c tslint.json -p tsconfig.json",
"test": "./node_modules/.bin/_mocha --opts ./test/mocha.opts",
"test:allure": "./node_modules/.bin/_mocha --opts ./test/mocha-allure.opts",
"clean": "rimraf node_modules dist",
"report:clean": "rimraf allure*",
"report:generate": "allure generate allure-results --clean -o allure-report",
"report:generate:open": "allure generate allure-results --clean -o allure-report && allure open allure-report"
},
"keywords": [
"Spectron",
"demo",
"typescript"
],
"author": "Khiem Luc",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.1.5",
"@types/es6-promise": "^3.3.0",
"@types/mocha": "^5.2.5",
"@types/webdriverio": "^4.13.3",
"axios": "^0.19.2",
"chai": "^4.2.0",
"electron": "*",
"mocha": "^5.2.0",
"mocha-allure-reporter": "^1.4.0",
"rimraf": "^2.6.2",
"spectron": "*",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^2.9.2"
}
}