-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 3.32 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
{
"name": "@snowdrop/snowdrop-automation-client",
"version": "0.1.0",
"description": "an Atomist automation",
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/snowdrop/snowdrop-automation-client.git"
},
"homepage": "https://github.com/snowdrop/snowdrop-automation-client#readme",
"bugs": {
"url": "https://github.com/snowdrop/snowdrop-automation-client/issues"
},
"keywords": [
"atomist",
"automation",
"seed"
],
"dependencies": {
"@atomist/automation-client": "^1.9.0",
"@atomist/sdm": "^1.9.0",
"@atomist/sdm-core": "^1.9.0",
"@atomist/sdm-pack-spring": "^2.0.1",
"@atomist/slack-messages": "^1.1.1",
"app-root-path": "^3.0.0",
"async": "^3.2.0",
"axios": "^0.19.2",
"compare-versions": "^3.6.0",
"config": "^3.3.1",
"email-templates": "^7.0.5",
"nodemailer-sendgrid": "^1.0.3",
"xml2json": "^0.12.0"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/async": "^3.2.3",
"@types/axios": "^0.14.0",
"@types/chai": "^4.2.11",
"@types/config": "0.0.36",
"@types/email-templates": "^7.0.2",
"@types/js-yaml": "^3.12.5",
"@types/mocha": "^7.0.2",
"@types/node": "^9.6.56",
"@types/nodemailer-sendgrid": "^1.0.0",
"@types/power-assert": "^1.5.3",
"@types/shelljs": "^0.8.8",
"@types/xml2json": "^0.11.0",
"chai": "^4.2.0",
"espower-typescript": "^9.0.2",
"js-yaml": "^3.14.0",
"mocha": "^8.0.1",
"nodemon": "^2.0.4",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.1",
"pug": "^3.0.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.4",
"supervisor": "^0.12.0",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"typedoc": "^0.17.8",
"typescript": "^3.9.6",
"typescript-formatter": "^7.2.2"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "nodemon --watch index.ts --watch lib --ext ts --delay 4 --exec ts-node -- node_modules/@atomist/automation-client/bin/start.js",
"autotest": "supervisor --watch index.ts,lib,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "run-s compile test lint doc",
"clean": "run-p clean:compile clean:doc clean:run",
"clean:compile": "rimraf git-info.json \"index.{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",
"compile": "run-s git:info gql:gen compile:ts",
"compile:ts": "tsc --skipLibCheck --project .",
"doc": "typedoc --mode modules --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"fmt": "tsfmt --replace",
"git:info": "atm-git-info",
"gql:gen": "atm-gql-gen",
"lint": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" --exclude \"**/*.d.ts\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "atm-start",
"test": "NODE_ENV=test mocha --timeout 10000 --require espower-typescript/guess \"test/**/*Test.ts\"",
"test:one": "NODE_ENV=test mocha --timeout 10000 --require espower-typescript/guess \"test/**/${TEST:-*Test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": "^12.18.x",
"npm": "6.14.x"
}
}