-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2 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
{
"name": "enonic-npm-modules",
"version": "1.0.0",
"description": "Bundle of core @enonic packages with rules, styles, and plugins.",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/enonic/enonic-npm-modules.git"
},
"author": "Mikita Taukachou <edloidas@gmail.com> (https://edloidas.com)",
"contributors": [
"Alan Semenov <asl@enonic.com> (https://enonic.com)",
"Pavel Milkevich <pmi@enonic.com> (https://enonic.com)"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/enonic/enonic-npm-modules/issues"
},
"homepage": "https://github.com/enonic/enonic-npm-modules#readme",
"scripts": {
"build": "npm-run-all build:**",
"build:enonic-dependencies-resolver": "npm run build --prefix packages/enonic-dependencies-resolver",
"test": "npm-run-all test:**",
"test:browserslist-config-enonic": "jest packages/browserslist-config-enonic",
"test:enonic-admin-artifacts": "jest packages/enonic-admin-artifacts",
"test:enonic-dependencies-resolver": "npm run test --prefix packages/enonic-dependencies-resolver",
"test:error-logger-webpack-plugin": "jest packages/error-logger-webpack-plugin",
"cover": "jest --coverage",
"report": "jest --coverage --coverageReporters=text-lcov | coveralls",
"precommit": "npm run build && lint-staged",
"lint": "eslint .",
"fix": "eslint --fix .",
"publish:all": "lerna publish",
"install:all": "./npm-install-all.sh"
},
"devDependencies": {
"eslint": "^9.11.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.6",
"jest": "^29.6.1",
"lerna": "^8.0.0",
"lint-staged": "^15.0.1",
"ts-jest": "^29.1.1",
"typescript-eslint": "^8.11.0",
"webpack": "^5.73.0",
"webpack-cli": "^6.0.1"
},
"engines": {
"node": ">= 20.18.0",
"npm": ">= 10.8.2"
},
"dependencies": {
"npm-run-all": "^4.1.5"
}
}