generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.82 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
{
"name": "protector",
"private": true,
"main": "dist/build/main.js",
"scripts": {
"build": "npm-run-all build:type build:transpile build:release",
"build:type": "apollo codegen:generate --includes './src/**/*' --target typescript --localSchemaFile './schema.json' --globalTypesFile './src/global.ts'",
"build:transpile": "tsc",
"build:release": "ncc build dist/build/main.js --source-map --license licenses.txt -o dist/release",
"schema:download": "apollo client:download-schema",
"format": "prettier --write **/*.ts",
"test": "npm-run-all test:lint test:unit",
"test:unit": "jest",
"test:lint": "eslint src/**/*.ts",
"all": "npm-run-all build test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/m19c/protector.git"
},
"keywords": [
"actions",
"node",
"setup",
"branch",
"protection",
"github"
],
"author": "Marc \"m19c\" Binder <[email protected]>",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.4.0",
"@apollo/client": "^3.3.20",
"@octokit/graphql": "^4.6.4",
"cross-fetch": "^3.1.4",
"deepmerge": "^4.2.2",
"graphql": "^15.5.1",
"lodash.clone": "^4.5.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@types/deepmerge": "^2.2.0",
"@types/jest": "^26.0.23",
"@types/lodash.clone": "^4.5.6",
"@types/node": "^16.0.0",
"@types/react": "^17.0.11",
"@types/yaml": "^1.9.7",
"@typescript-eslint/parser": "^4.28.2",
"@vercel/ncc": "^0.28.6",
"apollo": "^2.33.4",
"eslint": "^7.29.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-jest": "^24.3.6",
"jest": "^27.0.5",
"jest-circus": "^27.0.5",
"js-yaml": "^4.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"ts-jest": "^27.0.3",
"typescript": "^4.3.5"
}
}