This repository has been archived by the owner on May 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.39 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@atomist/github-notification-skill",
"homepage": "https://github.com/atomist-skills/github-notification-skill",
"license": "Apache-2.0",
"author": {
"name": "Atomist, Inc.",
"email": "[email protected]",
"url": "https://atomist.com"
},
"main": "node_modules/@atomist/sdm-function-gcp/lib/function.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/atomist-skills/github-notification-skill.git"
},
"scripts": {
"atm:lint:eslint": "eslint --fix",
"atm:lint:prettier": "prettier --write",
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s clean compile test lint doc",
"clean": "run-p clean:compile clean:test clean:doc clean:run",
"clean:compile": "rimraf git-info.json \"*.{d.ts,js}{,.map}\" \"{lib,test}/**/*.{d.ts,js}{,.map}\" lib/typings/types.ts",
"clean:dist": "run-s clean clean:npm",
"clean:doc": "rimraf doc",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt log",
"clean:test": "rimraf .nyc_output coverage",
"compile": "run-s git:info gql:gen compile:ts",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"git:info": "atm-git-info",
"gql:gen": "atm-gql-gen",
"lint": "run-p lint:eslint lint:prettier",
"lint:eslint": "eslint --ext .ts .",
"lint:eslint:fix": "npm run lint:eslint -- --fix",
"lint:fix": "run-p lint:eslint:fix lint:prettier:fix",
"lint:prettier": "prettier --list-different \"**/*.{graphql,json,markdown,md,yaml,yml}\"",
"lint:prettier:fix": "prettier --write \"**/*.{graphql,json,markdown,md,yaml,yml}\"",
"skill": "run-s compile test && atm-skill gen --no-validate && atm-skill package",
"start": "functions-framework --target=sdm --signature-type=event",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\""
},
"dependencies": {
"@atomist/automation-client": "^2.2.1",
"@atomist/sdm": "^2.1.4",
"@atomist/sdm-function-gcp": "0.1.0-master.20200911104525",
"@atomist/sdm-pack-lifecycle": "0.5.0-master.20210324084547",
"@atomist/sdm-pack-lifecycle-github": "0.4.0-master.20201119174312",
"lodash": "^4.17.21"
},
"devDependencies": {
"@google-cloud/functions-framework": "^1.7.1",
"@types/lodash": "^4.14.170",
"@types/mocha": "^7.0.2",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"espower-typescript": "^9.0.2",
"husky": "^4.3.5",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"rimraf": "^3.0.2",
"supervisor": "^0.12.0",
"typedoc": "^0.16.11",
"typescript": "^3.9.9"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.ts": "npm run atm:lint:eslint",
"**/*.@(graphql|json|markdown|yaml|yml|md)": "npm run atm:lint:prettier"
}
}