-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
83 lines (83 loc) · 1.96 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
{
"name": "puppet-run",
"version": "0.11.4",
"license": "MIT",
"description": "Run anything JavaScript in a headless Chrome from your command line.",
"author": "Andy Wermke (https://github.com/andywer)",
"repository": "github:andywer/puppet-run",
"bin": "./dist/cli.js",
"scripts": {
"prebuild": "rimraf dist/",
"build": "tsc",
"test": "tslint --project .",
"prepare": "npm run build"
},
"keywords": [
"puppeteer",
"headless",
"chrome",
"parcel",
"bundler",
"javascript",
"script",
"testing"
],
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"@babel/preset-typescript": "^7.9.0",
"babelify": "^10.0.0",
"browserify": "^16.5.1",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"dedent": "^0.7.0",
"del": "^6.0.0",
"@goto-bus-stop/envify": "^5.0.0",
"get-port": "^4.2.0",
"meow": "^5.0.0",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"nanoid": "^2.1.11",
"ora": "^3.4.0",
"puppeteer-core": "^1.20.0",
"serve-handler": "^6.1.2",
"sourcemapped-stacktrace": "^1.1.11",
"which": "^1.3.1"
},
"devDependencies": {
"@types/babelify": "^7.3.6",
"@types/browserify": "^12.0.36",
"@types/debug": "0.0.30",
"@types/dedent": "^0.7.0",
"@types/del": "^4.0.0",
"@types/meow": "^5.0.0",
"@types/mkdirp": "^0.5.2",
"@types/nanoid": "^2.1.0",
"@types/node": "^10.17.24",
"@types/ora": "^1.3.5",
"@types/puppeteer-core": "^1.9.0",
"@types/rimraf": "^2.0.4",
"@types/which": "^1.3.2",
"lint-staged": "^7.2.2",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.3"
},
"files": [
"dist/**"
],
"prettier": {
"semi": false,
"printWidth": 120
},
"lint-staged": {
"*": [
"prettier --write",
"git add"
]
}
}