-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (77 loc) · 2.44 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
73
74
75
76
77
78
{
"name": "@adobe-rnd/aem-boilerplate-forms",
"version": "1.3.0",
"description": "Starter project for AEM Forms for Edge Delivery",
"type": "module",
"c8": {
"exclude": [
"blocks/form/rules/model/*.js",
"blocks/form/rules/formula/*.js",
"blocks/form/rules/worker.js",
"blocks/form/rules-doc/parser/*.js"
],
"include": [
"blocks/form/**/*.js",
"blocks/form/rules/*.js"
],
"report-dir": "coverage",
"check-coverage": true
},
"scripts": {
"test": "mocha",
"coverage": "c8 --check-coverage --reporter=html --reporter=text --lines 89 --functions 94 --branches 87 mocha",
"lint:js": "eslint .",
"lint:css": "stylelint blocks/**/*.css styles/*.css",
"lint": "npm run lint:js && npm run lint:css",
"update:formula": "rollup -c rollup/jsonformula.rollup.config.js",
"update:core": "rollup -c rollup/af-core.rollup.config.js",
"update:formatters": "rollup -c rollup/af-formatters.rollup.config.js",
"update": "npm run update:core && npm run update:formula && npm run update:formatters"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe-rnd/aem-boilerplate-forms.git"
},
"author": "Adobe",
"license": "Adobe Proprietary",
"bugs": {
"url": "https://github.com/adobe-rnd/aem-boilerplate-forms/issues"
},
"homepage": "https://github.com/adobe-rnd/aem-boilerplate-forms#readme",
"devDependencies": {
"@adobe/json-formula": "0.1.50",
"@aemforms/af-core": "0.22.76",
"@aemforms/af-formatters": "0.22.76",
"@testing-library/dom": "^9.3.4",
"@testing-library/user-event": "14.3.0",
"c8": "^9.0.0",
"dom-compare": "^0.6.0",
"fs-extra": "^11.2.0",
"jsdom": "^24.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^10.2.0",
"mutationobserver-shim": "^0.3.7",
"nock": "^13.4.0",
"node-fetch": "^3.3.2",
"nyc": "^15.1.0",
"parse-multipart-data": "^1.5.0",
"rollup": "^2.79.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-terser": "^7.0.2",
"sinon": "^17.0.1",
"@babel/core": "7.24.0",
"@babel/eslint-parser": "7.23.10",
"chai": "5.1.0",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"stylelint": "16.2.1",
"stylelint-config-standard": "36.0.0"
},
"mocha": {
"spec": "test/**/*.test.js",
"require": "test/setup-env.js",
"recursive": "true"
}
}