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
89 lines (89 loc) · 3.44 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
87
88
89
{
"name": "@atomist/github-auto-rebase-skill",
"homepage": "https://github.com/atomist-skills/github-auto-rebase-skill#readme",
"license": "Apache-2.0",
"author": {
"name": "Atomist, Inc.",
"email": "[email protected]",
"url": "https://atomist.com"
},
"main": "node_modules/@atomist/skill/lib/function.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/atomist-skills/github-auto-rebase-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}\" \"{bin,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-npm-tools git-info",
"gql:gen": "atm-skill gql-generate",
"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 skill:generate skill:package",
"skill:bundle": "atm-skill bundle",
"skill:clean": "atm-skill clean",
"skill:generate": "atm-skill generate",
"skill:package": "atm-skill package",
"skill:register": "atm-skill register",
"start": "functions-framework --target=entryPoint --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/skill": "^0.11.0",
"@atomist/slack-messages": "^1.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@atomist/npm-tools": "^0.1.1-main.0",
"@google-cloud/functions-framework": "^1.9.0",
"@types/lodash": "^4.14.175",
"@types/mocha": "^8.2.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-deprecation": "^1.2.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.5",
"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.4.1",
"rimraf": "^3.0.2",
"supervisor": "^0.12.0",
"typedoc": "^0.20.37",
"typescript": "^4.4.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.@(graphql|json|markdown|yaml|yml|md)": "npm run atm:lint:prettier",
"**/*.ts": "npm run atm:lint:eslint"
}
}