This repository has been archived by the owner on Feb 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.7 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
90
91
92
93
94
95
96
97
98
{
"name": "@atomist/npm-build-skill",
"homepage": "https://github.com/atomist-skills/npm-build-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/npm-build-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-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: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.12.0-main.82",
"fs-extra": "^10.1.0",
"p-retry": "^5.1.1",
"semver": "^7.3.7"
},
"devDependencies": {
"@atomist/npm-tools": "^0.1.1-main.0",
"@google-cloud/functions-framework": "^1.10.0",
"@graphql-codegen/cli": "^1.21.8",
"@graphql-codegen/typescript": "^1.23.0",
"@graphql-codegen/typescript-operations": "^1.18.4",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^8.2.3",
"@types/power-assert": "^1.5.5",
"@types/semver": "^7.3.8",
"@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",
"graphql": "^15.6.1",
"husky": "^4.3.5",
"lint-staged": "^10.5.4",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"supervisor": "^0.12.0",
"ts-node": "^10.7.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.4"
},
"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"
}
}