This repository was archived by the owner on Jul 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.3 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.3 KB
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
{
"devDependencies": {
"@atomist/skill-bundler": "^0.1.43",
"husky": "^4.3.5",
"lint-staged": "^10.5.4",
"prettier": "^2.4.1",
"shadow-cljs": "^2.12.5",
"source-map-support": "0.5.9",
"ws": "^7.4.6"
},
"dependencies": {
"@atomist/api-cljs": "^0.5.57",
"@atomist/skill-logging": "^0.2.6",
"@google-cloud/pubsub": "^2.18.1",
"@google-cloud/storage": "^5.14.5",
"copyright-regex": "^1.1.6",
"fast-glob": "^3.2.7",
"filename-regex": "^2.0.1",
"iconv-lite": "^0.4.19",
"mentions-regex": "^2.0.3",
"regex-email": "^1.0.2",
"shell-quote": "^1.7.2",
"tmp": "^0.2.1",
"todo-regex": "^0.1.1",
"url-regex": "^5.0.0"
},
"author": "jim@atomist.com",
"name": "string-replace-skill",
"main": "node_modules/@atomist/api-cljs/app.js",
"lint-staged": {
"**/*.@(graphql|json|markdown|yaml|yml|md)": "npm run atm:lint:prettier"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"version": "0.1.0",
"description": "use this to pull in a skill's npm dependencies",
"scripts": {
"build:watch": "shadow-cljs watch dev -A:dev:test",
"build": "shadow-cljs release release -A:dev:build",
"bundle": "bundle",
"skill": "npm run build && npm run bundle",
"atm:lint:prettier": "prettier --write"
}
}