-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
82 lines (82 loc) · 2.41 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
79
80
81
82
{
"name": "hap",
"version": "0.4.1",
"description": "A command line toolkit for developing Quick Apps.",
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "gulp clean",
"dev": "gulp watch --dev",
"build": "gulp",
"build:dev": "gulp --dev",
"test": "gulp test --detectOpenHandles --forceExit ",
"test:cov": "gulp test --coverage --detectOpenHandles --forceExit ",
"lint": "eslint .",
"pack": "lerna exec \"npm pack\"",
"pack-sourcemaps": "lerna exec \"find . -path ./node_modules -prune -o -name *.js.map -print0 | tar -czvf sourcemaps.tgz --null -T -\"",
"prettier": "prettier \"**/*.{js,ts,tsx,md,css,html,yml}\" --write",
"prettier-check": "prettier --list-different \"**/*.{js,ts,tsx,md,css,html,yml}\"",
"prepare": "husky install",
"postinstall": "cd examples/sample && yarn install --registry https://registry.npmmirror.com/ && cd ../.."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,ts,tsx,md,css,html,yml}": [
"prettier --write"
],
".prettier{rc,ignore}": [
"npm run prettier"
]
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-modules-commonjs": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/runtime": "^7.9.6",
"babel-eslint": "^8.2.6",
"babel-loader": "^8.1.0",
"css-loader": "^5.0.1",
"del": "^4.1.1",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "4.0.2",
"fkill": "^7.0.1",
"fs-extra": "^10.0.0",
"glob": "^7.1.6",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-cli": "^2.2.0",
"gulp-eslint": "^5.0.0",
"gulp-htmlmin": "^5.0.1",
"gulp-jest": "^4.0.3",
"gulp-sourcemaps": "^3.0.0",
"gulp-terser": "^1.2.0",
"husky": "^8.0.0",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"lerna": "^3.20.2",
"lint-staged": "^8.2.1",
"mini-css-extract-plugin": "^1.3.0",
"node-fetch": "^2.6.0",
"plugin-error": "^1.0.1",
"prettier": "2.6.2",
"pump": "^3.0.0",
"strip-ansi": "^6.0.0",
"webpack": "5.72.0",
"webpack-sources": "^2.2.0"
}
}