forked from atomist/sdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.75 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
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@atomist/sdm",
"version": "1.2.1",
"description": "Atomist Software Delivery Machine API",
"author": {
"name": "Atomist",
"email": "[email protected]",
"url": "https://atomist.com/"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/sdm.git"
},
"keywords": [
"atomist",
"automation",
"sdm",
"ci",
"cd"
],
"homepage": "https://github.com/atomist/sdm#readme",
"bugs": {
"url": "https://github.com/atomist/sdm/issues"
},
"main": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"@types/cron": "^1.3.0",
"@types/dateformat": "^3.0.0",
"@types/find-up": "^2.1.1",
"@types/fs-extra": "^5.0.4",
"@types/json-stringify-safe": "^5.0.0",
"@types/jssha": "^2.0.0",
"@types/lodash": "^4.14.119",
"@types/minimatch": "^3.0.3",
"@types/node": "^10.12.18",
"@types/sprintf-js": "^1.1.1",
"@types/stack-trace": "0.0.29",
"axios": "^0.18.0",
"base64-js": "^1.3.0",
"cron": "^1.6.0",
"dateformat": "^3.0.3",
"find-up": "^3.0.0",
"fs-extra": "^7.0.1",
"json-stringify-safe": "^5.0.1",
"jssha": "^2.3.1",
"lodash": "^4.17.10",
"minimatch": "^3.0.4",
"sha-regex": "^1.0.2",
"sprintf-js": "^1.1.2",
"stack-trace": "0.0.10"
},
"peerDependencies": {
"@atomist/automation-client": ">=1.2.0",
"@atomist/slack-messages": ">=1.1.0"
},
"devDependencies": {
"@atomist/automation-client": "^1.2.0",
"@atomist/slack-messages": "^1.1.0",
"@types/mocha": "^5.2.5",
"@types/power-assert": "^1.4.29",
"barrelsby": "1.0.2",
"espower-typescript": "^9.0.0",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.5",
"power-assert": "^1.6.0",
"prettier": "^1.15.1",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typedoc": "^0.13.0",
"typescript": "^3.2.2"
},
"directories": {
"test": "test"
},
"scripts": {
"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:test clean:doc clean:run clean:barrels",
"clean:barrels": "rimraf index.ts",
"clean:compile": "rimraf git-info.json build \"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",
"clean:test": "rimraf .nyc_output coverage",
"compile": "run-s gql:gen compile:barrels compile:ts",
"compile:barrels": "run-s clean:barrels compile:barrels:create",
"compile:barrels:create": "barrelsby --directory . --location top --include \"/lib/(?:api(?:-helper)?|spi|typings)/\" --exclude \"/node_modules/\" --exclude \"\\.d\\.ts\\$\" --exclude \"Projects?OperationRegistration\"",
"compile:ts": "tsc --project .",
"doc": "typedoc --mode modules --excludeExternals --ignoreCompilerErrors --exclude \"**/*.d.ts\" --out doc index.ts lib",
"fmt": "run-s fmt:gql",
"fmt:gql": "prettier --write \"lib/graphql/**/*.graphql\"",
"gql:gen": "atm-gql-gen",
"lint": "run-p lint:ts lint:gql",
"lint:ts": "tslint --config tslint.json --format verbose --project .",
"lint:gql": "prettier --list-different \"lib/graphql/**/*.graphql\"",
"lint:fix": "run-p lint:ts:fix fmt:gql",
"lint:ts:fix": "npm run lint:ts -- --fix",
"test": "mocha --require espower-typescript/guess \"test/**/*.test.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.test.ts}\"",
"typedoc": "npm run doc"
},
"engines": {
"node": ">=8.1.0",
"npm": ">=5.0.0"
}
}