forked from adobecom/bulk-updater
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.61 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
{
"name": "bulk-doc-updater",
"version": "1.0.0",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha --exit",
"test:watch": "mocha --watch --parallel",
"test:bulk": "npm run test test/bulk-update/**/*.js",
"test:bulk:watch": "npm run test:watch test/bulk-update/**/*.js",
"lint": "npm run lint:js",
"fix": "npm run lint --fix *.js",
"lint:js": "eslint .",
"lint:js:nibble": "eslint-nibble .",
"prepare": "husky install",
"migration:blog": "node blog-migration.js"
},
"mocha": {
"recursive": "true"
},
"author": "",
"license": "ISC",
"dependencies": {
"@adobe/fetch": "^4.1.1",
"@adobe/helix-html-pipeline": "^5.4.4",
"@adobe/helix-md2docx": "^2.1.38",
"@babel/core": "7.17.7",
"@babel/eslint-parser": "7.17.0",
"@esm-bundle/chai": "^4.3.4-fix.0",
"eslint-nibble": "^8.1.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-ecmalist": "^1.0.8",
"eslint-plugin-react-hooks": "^4.6.0",
"fs-extra": "^10.1.0",
"glob": "^10.3.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.2.0",
"sinon": "13.0.1",
"stylelint": "14.6.0",
"stylelint-config-prettier": "9.0.3",
"stylelint-config-standard": "25.0.0",
"unist-util-select": "^5.1.0",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.19.3/xlsx-0.19.3.tgz"
},
"lint-staged": {
"*.js": "eslint",
"*.css": "stylelint"
},
"devDependencies": {
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1"
}
}