-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "pr-automation-action",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"build": "babel src -s -d transpiled --ignore '**/*.test.js'",
"package": "npm run build; ncc build transpiled/index.js -o dist",
"test": "jest",
"start": "babel-node -r dotenv/config src/index.js",
"start_package": "npm run package; export $(sed 's/[@ ]//g' .env | xargs -0); node dist/index.js"
},
"moduleDirectories": [
"node_modules",
"src"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/github": "^2.1.1",
"@async-generators/filter": "^0.1.1",
"parse-duration": "^0.1.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@zeit/ncc": "^0.22.0",
"babel-jest": "^25.1.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.1.0",
"prettier": "^2.0.2"
}
}