-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.79 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
{
"name": "parcel-transformer-html-datasrc",
"version": "1.3.2",
"description": "A Parcel 2.x Plugin to parse data-* attributes on html image-tags as well as custom html-tags",
"main": "index.js",
"targets": {
"main": false
},
"engines": {
"node": ">= 12.0.0",
"parcel": "^2.0.0"
},
"scripts": {
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "lint-staged",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"lint-staged": {
"./**/*.js": [
"prettier --write",
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/moritzlaube/parcel-transformer-html-datasrc.git"
},
"keywords": [
"parcel 2",
"plugin",
"parceljs 2",
"data-src",
"data-srcset"
],
"author": "Moritz Laube",
"license": "MIT",
"bugs": {
"url": "https://github.com/moritzlaube/parcel-transformer-html-datasrc/issues"
},
"homepage": "https://github.com/moritzlaube/parcel-transformer-html-datasrc#readme",
"devDependencies": {
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"mocha": "^9.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"parcel": "^2.0.0",
"parcel-transformer-html-datasrc": "file:",
"prettier": "^2.3.1"
},
"dependencies": {
"@parcel/plugin": "^2.0.0",
"lodash.mergewith": "^4.6.2",
"nullthrows": "^1.1.1",
"posthtml": "^0.16.1",
"posthtml-parser": "^0.9.0",
"posthtml-render": "^3.0.0",
"semver": "^7.3.5"
}
}