-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.03 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
{
"name": "scriptwriter",
"version": "0.1.1",
"description": "✍️ An authoring tool for playwrights.",
"keywords": [
"playwright",
"repl",
"e2e",
"testing",
"Chromium",
"Puppeteer"
],
"engines": {
"node": ">=10.15.0"
},
"main": "./index.js",
"bin": {
"scriptwriter": "./bin/cli.js"
},
"scripts": {
"docs": "documentation build lib/** -f html -o docs",
"lint:docs": "documentation lint ./lib/**",
"lint:code": "prettier-eslint --write --single-quote --use-tabs \"**/*.{js,json,md}\"",
"lint": "run-p lint:*",
"start": "$npm_package_bin_scriptwriter",
"test:dev": "cross-env NODE_ENV=test ava",
"test:ci": "cross-env NODE_ENV=test nyc ava -t",
"cover:html": "nyc report --reporter=html",
"test": "run-s lint test:ci",
"version": "run-s lint docs",
"release": "np"
},
"directories": {
"bin": "./bin",
"lib": "./lib"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js}": "npm run lint:docs",
"**/*.{js,json,md}": "npm run lint:code"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AutoSponge/scriptwriter.git"
},
"author": {
"name": "Paul Grenier",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AutoSponge/scriptwriter/issues"
},
"homepage": "https://github.com/AutoSponge/scriptwriter#readme",
"peerDependencies": {
"playwright": ">=0.12.0"
},
"dependencies": {
"ansi-escapes": "^4.3.1",
"dlv": "^1.1.3",
"import-global": "^0.1.0",
"kleur": "^4.0.0",
"meow": "^8.0.0",
"normalize-url": "^5.0.0",
"prettier": "^2.0.2",
"pretty-error": "^2.1.1",
"terminal-link": "^2.1.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"ava": "^3.5.1",
"cross-env": "^7.0.2",
"husky": "^4.2.3",
"lint-staged": "^10.1.1",
"np": "*",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.0",
"prettier-eslint": "^11.0.0",
"prettier-eslint-cli": "^5.0.0",
"tempfile": "^3.0.0"
}
}