-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@mikeyzat12/detest",
"version": "0.1.1",
"description": "Tool for testing the design of your app.",
"main": "index.js",
"scripts": {
"start": "node cli.js",
"test": "echo \"No test sepcified\"",
"lint-check": "eslint \"src/**/*.js\" \"index.js\" \"cli.js\"",
"prettier-check": "prettier --check \"src/**/*.js\" \"index.js\" \"cli.js\"",
"prettier-fix": "prettier --write \"src/**/*.js\" \"index.js\" \"cli.js\""
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/MikeyZat/detest.git"
},
"keywords": [
"test",
"design",
"testing"
],
"author": "MikeyZat",
"license": "ISC",
"bugs": {
"url": "https://github.com/MikeyZat/detest/issues"
},
"homepage": "https://github.com/MikeyZat/detest#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"js-yaml": "^3.14.1",
"pino": "^6.11.3",
"pino-pretty": "^4.8.0",
"puppeteer": "^9.1.1",
"tap": "^15.0.9",
"yargs": "^17.0.1"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "^2.2.1"
},
"bin": "cli.js"
}