forked from web-infra-dev/actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.73 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
{
"name": "actions",
"version": "0.1.1",
"jsnext:source": "./src/index.ts",
"main": "./dist/index.js",
"scripts": {
"prepare": "modern build",
"prepublishOnly": "modern build --platform",
"dev": "modern dev",
"build": "modern build",
"reset": "rm -rf node_modules",
"lint": "modern lint",
"change": "modern change",
"bump": "modern bump",
"pre": "modern pre",
"release": "modern release",
"new": "modern new",
"test": "modern test --passWithNoTests"
},
"engines": {
"node": ">=14.17.6"
},
"eslintConfig": {
"extends": [
"@modern-js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet",
"git add"
],
"*.{js,jsx,mjs,mjsx,cjs,cjsx}": [
"node --max_old_space_size=8192 ./node_modules/eslint/bin/eslint.js --fix --color --cache --quiet",
"git add"
]
},
"eslintIgnore": [
"node_modules/",
"dist/"
],
"devDependencies": {
"@actions/core": "^1.8.0",
"@actions/github": "^5.0.3",
"@changesets/assemble-release-plan": "^5.2.1",
"@changesets/config": "^2.1.1",
"@changesets/read": "^0.5.5",
"@manypkg/get-packages": "^1.1.2",
"@modern-js/module-tools": "2.22.0",
"@modern-js/plugin-testing": "2.22.0",
"@modern-js/utils": "2.22.0",
"@types/jest": "^26.0.9",
"@types/node": "^14",
"execa": "^5.1.1",
"package-json": "^7.0.0",
"typescript": "^4.6.4"
},
"sideEffects": [
"*.css",
"*.less",
"*.sass",
"*.scss"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}