-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
61 lines (61 loc) · 1.45 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
{
"name": "ckeditor5-dev",
"version": "25.2.6",
"private": true,
"dependencies": {
"glob": "^7.1.6",
"minimatch": "^3.0.4"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-ckeditor5": "^3.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.4",
"mocha": "^7.1.2",
"nyc": "^15.1.0"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.7.1"
},
"author": "CKSource (http://cksource.com/)",
"license": "GPL-2.0-or-later",
"bugs": "https://github.com/ckeditor/ckeditor5-dev/issues",
"repository": {
"type": "git",
"url": "https://github.com/ckeditor/ckeditor5-dev.git"
},
"homepage": "https://github.com/ckeditor/ckeditor5-dev#readme",
"scripts": {
"test": "mocha packages/*/tests --recursive --timeout 5000",
"coverage": "nyc --reporter=lcov --reporter=text-summary mocha packages/*/tests -- --recursive --timeout 5000",
"changelog": "node ./scripts/changelog.js",
"release:bump-version": "node ./scripts/bump-versions.js",
"release:publish": "node ./scripts/publish.js",
"lint": "eslint --quiet '**/*.js'",
"precommit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"eslint --quiet"
]
},
"eslintIgnore": [
"coverage/**",
"packages/*/node_modules/**"
],
"workspaces": {
"packages": [
"packages/*",
"."
],
"nohoist": [
"**/husky"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}