-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 956 Bytes
/
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
{
"name": "fvtt-gh-actions",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"lint": "eslint src",
"test": "mocha",
"ncc": "NODE_OPTIONS='--experimental-vm-modules' npx @vercel/ncc build src/index.mjs -o dist --target es2020 && sed -i 's/require(/__WEBPACK_EXTERNAL_createRequire(import.meta.url)(/' dist/index.mjs",
"clean": "rm -rf node_modules dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"classic-level": "^1.4.1",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^10.7.0"
},
"eslintConfig": {
"extends": "eslint-config-standard",
"parserOptions": {
"ecmaVersion": 2020
},
"env": {
"node": true
},
"rules": {
"no-console": 0,
"no-unused-vars": 1
}
}
}