UNPKG

1.74 kBJSONView Raw
1{
2 "name": "@adobe/parcel-plugin-htl",
3 "version": "2.1.5",
4 "repository": "https://github.com/adobe/parcel-plugin-htl",
5 "description": "Compiles HTL templates to JS functions",
6 "main": "src/index.js",
7 "scripts": {
8 "semantic-release": "semantic-release",
9 "commit": "git-cz",
10 "start": "node src/run.js",
11 "test": "nyc --reporter=text --reporter=lcov --check-coverage mocha",
12 "test-ci": "npm run lint && npm run test && codecov",
13 "lint": "./node_modules/.bin/eslint .",
14 "snyk-protect": "snyk protect",
15 "prepare": "npm run snyk-protect"
16 },
17 "author": "",
18 "license": "Apache-2.0",
19 "dependencies": {
20 "@adobe/htlengine": "2.1.7",
21 "fs-extra": "^7.0.1",
22 "logform": "^2.1.2",
23 "parcel-bundler": "1.12.3"
24 },
25 "devDependencies": {
26 "@semantic-release/changelog": "^3.0.2",
27 "@semantic-release/git": "^7.0.8",
28 "@semantic-release/github": "^5.2.10",
29 "@semantic-release/npm": "^5.1.5",
30 "ajv": "^6.10.0",
31 "codecov": "^3.3.0",
32 "commitizen": "^3.1.1",
33 "cz-conventional-changelog": "^2.1.0",
34 "eslint": "^5.15.3",
35 "eslint-config-airbnb": "^17.1.0",
36 "eslint-plugin-header": "^3.0.0",
37 "eslint-plugin-import": "^2.17.2",
38 "eslint-plugin-jsx-a11y": "^6.2.1",
39 "eslint-plugin-react": "^7.13.0",
40 "ghooks": "^2.0.4",
41 "js-yaml": "^3.13.1",
42 "lint-staged": "^8.1.6",
43 "mocha": "^6.1.4",
44 "mocha-junit-reporter": "^1.22.0",
45 "nyc": "^14.0.0",
46 "semantic-release": "^15.13.3",
47 "snyk": "^1.162.0"
48 },
49 "snyk": true,
50 "lint-staged": {
51 "*.js": "eslint"
52 },
53 "config": {
54 "commitizen": {
55 "path": "node_modules/cz-conventional-changelog"
56 },
57 "ghooks": {
58 "pre-commit": "npx lint-staged"
59 }
60 }
61}