UNPKG

2.06 kBJSONView Raw
1{
2 "name": "puppet",
3 "version": "1.5.0",
4 "description": "Natural-language web automation using Puppeteer",
5 "main": "dist/index.js",
6 "bin": "dist/cli.js",
7 "types": "dist/index.d.ts",
8 "files": [
9 "dist"
10 ],
11 "scripts": {
12 "build": "tsc",
13 "test": "jest --runInBand --forceExit",
14 "test-report": "jest --forceExit --runInBand --coverage --coverageReporters=text-lcov | coveralls",
15 "test-without-reporting": "jest --forceExit --runInBand --coverage",
16 "semantic-release": "semantic-release",
17 "build-website": "parcel build website/index.html && echo 'puppet.js.org' > dist/CNAME",
18 "start-website": "parcel website/index.html"
19 },
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/AnandChowdhary/puppet.git"
23 },
24 "keywords": [
25 "node.js",
26 "typescript",
27 "javascript",
28 "library",
29 "puppeteer",
30 "scraping",
31 "automation"
32 ],
33 "author": "Anand Chowdhary <mail@anandchowdhary.com>",
34 "engines": {
35 "node": ">=10.0.0"
36 },
37 "license": "MIT",
38 "bugs": {
39 "url": "https://github.com/AnandChowdhary/puppet/issues"
40 },
41 "homepage": "https://anandchowdhary.github.io/puppet/",
42 "dependencies": {
43 "@medv/finder": "^1.1.2",
44 "fs-extra": "^9.0.0",
45 "got": "^10.7.0",
46 "ms": "^2.1.2",
47 "natural": "^0.6.3",
48 "puppeteer": "^2.1.1",
49 "signale": "^1.4.0"
50 },
51 "devDependencies": {
52 "@semantic-release/git": "^9.0.0",
53 "@types/fs-extra": "^8.1.0",
54 "@types/jest": "^25.2.1",
55 "@types/ms": "^0.7.31",
56 "@types/natural": "^0.6.3",
57 "@types/node": "^13.11.1",
58 "@types/puppeteer": "^2.0.1",
59 "@types/signale": "^1.4.1",
60 "coveralls": "^3.0.11",
61 "jest": "^25.3.0",
62 "parcel": "^1.12.4",
63 "sass": "^1.26.3",
64 "semantic-release": "^17.0.4",
65 "semantic-release-gitmoji": "^1.3.3",
66 "ts-jest": "25.2.1",
67 "typescript": "^3.8.3"
68 },
69 "jest": {
70 "roots": [
71 "<rootDir>"
72 ],
73 "transform": {
74 "^.+\\.tsx?$": "ts-jest"
75 },
76 "moduleFileExtensions": [
77 "js",
78 "ts",
79 "json"
80 ]
81 }
82}