-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.74 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.74 KB
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
{
"name": "@parcellab/js-plugin",
"version": "1.1.0",
"description": "Track and Trace JavaScript plugin used to retrieve and display trackings from parcelLab on any given webpage.",
"source": "src/index.js",
"targets": {
"bundle": {
"distDir": "bundle",
"context": "browser",
"includeNodeModules": true,
"outputFormat": "global",
"optimize": true,
"sourceMap": false
},
"deploy": {
"distDir": "dist",
"context": "browser",
"includeNodeModules": true,
"outputFormat": "global",
"optimize": true,
"sourceMap": false
}
},
"scripts": {
"start": "parcel test/index.html --port 4000",
"build": "parcel build --target deploy",
"clean": "rm -rf .parcel-cache && rm -rf dist",
"deploy": "npm run clean && npm run build",
"bundle": "parcel build --target bundle --no-cache",
"lint": "eslint src/",
"prepublishOnly": "npm run bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/parcelLab/parcelLab-js-plugin.git"
},
"keywords": [
"parcellab",
"plugin",
"track and trace",
"tracking"
],
"author": "parcelLab GmbH",
"license": "MIT",
"homepage": "https://www.parcellab.com",
"browserslist": "> 0.5%, last 2 versions, not dead",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@parcel/transformer-sass": "^2.16.3",
"eslint": "^9.39.2",
"eslint-config-parcellab": "^0.1.0",
"globals": "^17.2.0",
"parcel": "^2.13.3",
"sass": "^1.83.4"
},
"overrides": {
"immutable": ">=5.1.5",
"minimatch": ">=3.1.3"
},
"dependencies": {
"cash-dom": "^1.3.4",
"nanohtml": "^1.9.0",
"nanomorph": "^5.4.0",
"nanostore": "^1.2.0"
}
}