This repository has been archived by the owner on Sep 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.39 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
{
"name": "@atomist/spring-sdm",
"version": "0.1.5",
"description": "an Atomist SDM serving global Spring support",
"author": "Atomist, Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/spring-sdm.git"
},
"keywords": [
"atomist",
"automation",
"sdm",
"spring"
],
"homepage": "https://github.com/atomist/spring-sdm#readme",
"bugs": {
"url": "https://github.com/atomist/spring-sdm/issues"
},
"dependencies": {
"@atomist/cli": "0.2.2-20180731183747",
"@atomist/automation-client": "0.19.0-20180731181755",
"@atomist/automation-client-ext-dashboard": "0.1.0-20180705210657",
"@atomist/automation-client-ext-logzio": "0.1.0-20180628224529",
"@atomist/automation-client-ext-raven": "0.1.0-20180613131132",
"@atomist/sdm": "0.3.2-20180725153700",
"@atomist/sdm-core": "0.3.2-20180725161559",
"@atomist/sdm-pack-spring": "0.1.7-20180715090742",
"@atomist/slack-messages": "^0.12.1",
"@types/lodash": "^4.14.109"
},
"devDependencies": {
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.5",
"@types/power-assert": "^1.4.29",
"apollo-codegen": "^0.19.0",
"espower-typescript": "^8.1.3",
"graphql-code-generator": "^0.8.19",
"mocha": "^4.1.0",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"prettier": "^1.11.1",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^3.3.0",
"tslint": "^5.9.1",
"typedoc": "^0.9.0",
"typescript": "^2.8.3",
"typescript-formatter": "^7.0.1"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "npm-run-all --print-label --parallel watch:compile watch",
"autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "npm-run-all compile test",
"clean": "npm-run-all clean:js clean:build",
"clean:build": "rimraf *-v8.log profile.txt build",
"clean:dist": "npm-run-all clean clean:npm",
"clean:js": "rimraf \"{src,test}/**/*.js\"",
"clean:npm": "rimraf node_modules",
"compile": "npm-run-all git:info compile:gql compile:ts",
"compile:gql": "npm-run-all gql:gen gql:copy",
"compile:ts": "tsc --project .",
"debug": "node $NODE_DEBUG_OPTION node_modules/@atomist/automation-client/start.client.js",
"fmt": "npm-run-all fmt:ts fmt:gql",
"fmt:ts": "tsfmt --replace",
"fmt:gql": "prettier --write \"**/*.graphql\"",
"git:info": "atomist git",
"gql:copy": "copyfiles \"./src/**/*.graphql\" build",
"gql:gen": "atomist gql-gen --no-install \"src/graphql/**/*.graphql\"",
"lint": "npm-run-all lint:ts lint:gql",
"lint:ts": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
"lint:gql": "prettier --list-different \"src/graphql/**/*.graphql\"",
"lint:fix": "npm-run-all lint:ts:fix fmt:gql",
"lint:ts:fix": "npm run lint:ts -- --fix",
"start": "atomist start --no-install --no-compile",
"test": "mocha --exit --require espower-typescript/guess \"test/**/*.ts\"",
"test:one": "mocha --require espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
"typedoc": "typedoc --mode modules --excludeExternals --out build/typedoc src",
"watch:compile": "tsc --project . --watch",
"watch": "supervisor --watch build --quiet --exec npm -- run start"
},
"engines": {
"node": "8.x.x",
"npm": "5.x.x"
}
}