-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.17 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
{
"name": "action",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"format": "prettier --write 'src/**/*.{ts,tsx,js, jsx}'",
"build": "tsc --noEmit && ncc build src/main.ts -o dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atomix-team/linear-action.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/atomix-team/linear-action/issues"
},
"homepage": "https://github.com/atomix-team/linear-action#readme",
"devDependencies": {
"@actions/core": "^1.4.0",
"@actions/github": "^5.0.0",
"@babel/core": "^7.14.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.2",
"@babel/plugin-proposal-optional-chaining": "^7.14.2",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.13.0",
"@types/jest": "^26.0.23",
"@types/node": "^15.12.2",
"@vercel/ncc": "^0.28.6",
"babel-jest": "^27.0.2",
"babel-plugin-module-resolver": "^4.1.0",
"jest": "^27.0.4",
"prettier": "^2.3.1",
"typescript": "^4.3.2"
},
"dependencies": {
"@linear/sdk": "^1.15.0",
"core-js": "^3.14.0"
}
}