PluginProbe
Parse.ly / 3.1.1
Parse.ly v3.1.1
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / package.json

package.json in Parse.ly 3.1.1, at package.json

70 lines 2.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "name": "wp-parsely",
3 "version": "3.1.1",
4 "private": true,
5 "description": "The Parse.ly plugin facilitates real-time and historical analytics to your content through a platform designed and built for digital publishing.",
6 "author": "parsely, hbbtstar, jblz, mikeyarce, GaryJ, parsely_mike, pauarge",
7 "license": "GPL-2.0-or-later",
8 "keywords": [
9 "analytics",
10 "parse.ly",
11 "parsely",
12 "parsley"
13 ],
14 "homepage": "https://github.com/Parsely/wp-parsely",
15 "repository": {
16 "type": "git",
17 "url": "git+https://github.com/Parsely/wp-parsely.git"
18 },
19 "bugs": {
20 "url": "https://github.com/Parsely/wp-parsely/issues"
21 },
22 "engines": {
23 "node": ">=16",
24 "npm": ">=7"
25 },
26 "directories": {
27 "test": "tests"
28 },
29 "browserslist": [
30 "defaults"
31 ],
32 "dependencies": {
33 "@wordpress/dom-ready": "^3.3.0",
34 "js-cookie": "^3.0.1"
35 },
36 "devDependencies": {
37 "@wordpress/babel-preset-default": "^6.5.0",
38 "@wordpress/e2e-test-utils": "^6.0.0",
39 "@wordpress/env": "^4.2.0",
40 "@wordpress/eslint-plugin": "^10.0.0",
41 "@wordpress/scripts": "^20.0.2",
42 "concurrently": "^7.0.0",
43 "husky": "^7.0.4",
44 "prettier": "^2.5.1"
45 },
46 "scripts": {
47 "build": "wp-scripts build",
48 "dev:logs": "wp-env logs",
49 "dev:start": "wp-env start",
50 "dev:stop": "wp-env stop",
51 "lint": "concurrently \"npm:lint:*\"",
52 "lint:composer": "composer lint",
53 "lint:css": "wp-scripts lint-style",
54 "lint:js": "wp-scripts lint-js",
55 "lint:pkg-json": "wp-scripts lint-pkg-json",
56 "prepare": "husky install",
57 "start": "wp-scripts start",
58 "test": "npm run test:unit",
59 "test:e2e": "wp-scripts test-e2e",
60 "test:e2e:debug": "wp-scripts --inspect-brk test-e2e --puppeteer-devtools",
61 "test:e2e:help": "wp-scripts test-e2e --help",
62 "test:e2e:interactive": "npm run test:e2e -- --puppeteer-interactive",
63 "test:e2e:watch": "npm run test:e2e -- --watch",
64 "test:unit": "wp-scripts test-unit-js",
65 "test:unit:debug": "wp-scripts --inspect-brk test-unit-js --runInBand --no-cache",
66 "test:unit:help": "wp-scripts test-unit-js --help",
67 "test:unit:watch": "wp-scripts test-unit-js --watch"
68 }
69 }
70