-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 1.82 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
{
"name": "pup",
"version": "1.0.0",
"description": "",
"main": "none",
"dependencies": {
"p-limit": "^2.1.0",
"puppeteer": "^1.16.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/glob": "^7.1.1",
"@types/puppeteer": "^1.12.4",
"allure-commandline": "^2.9.0",
"better-npm-run": "^0.1.1",
"chalk": "^2.4.2",
"concurrently": "^4.1.0",
"glob": "^7.1.3",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"prescript": "^0.5555.55",
"prettier": "^1.15.3",
"source-map-support": "^0.5.10",
"standard-version": "^5.0.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.17.0",
"ttypescript": "^1.5.6",
"typescript": "^3.4.2",
"typescript-transform-paths": "^1.0.0"
},
"scripts": {
"start": "better-npm-run start",
"dev": "better-npm-run dev",
"test:all": "better-npm-run test:all",
"gen:history": "cp -R ./allure-report/history ./allure-results",
"test:report": "better-npm-run test:report",
"gen:report": "allure generate --clean",
"serve:report": "allure serve",
"build": "ttsc -sourcemap",
"build:watch": "ttsc -w -sourcemap",
"tslint": "tslint -p .",
"release": "standard-version"
},
"betterScripts": {
"start": {
"command": "prescript",
"env": {
"NODE_PATH": "src"
}
},
"dev": {
"command": "prescript -d",
"env": {
"NODE_PATH": "src",
"NODE_ENV": "development"
}
},
"test:all": {
"command": "node ./dist/testAll.js"
},
"test:report": {
"command": "better-npm-run test:all",
"env": {
"ALLURE_RESULTS_DIR": "allure-results"
}
}
},
"repository": {
"type": "git"
},
"author": "Thanaphol",
"license": "MIT"
}