This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 3.48 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
{
"name": "sdm-smoke-test",
"version": "0.1.0",
"description": "Atomist smoke test for SDM",
"author": "Rod Johnson",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/sdm-smoke-test.git"
},
"keywords": [
"atomist",
"automation",
"github"
],
"homepage": "https://github.com/atomist/sdm-smoke-test#readme",
"bugs": {
"url": "https://github.com/atomist/sdm-smoke-test/issues"
},
"dependencies": {
"@atomist/automation-client": "https://r.atomist.com/S1V2yPXO5z",
"@atomist/spring-automation": "https://r.atomist.com/Syrsy8R_9f",
"@types/cucumber": "^4.0.1",
"@types/power-assert": "^1.4.29",
"app-root-path": "^2.0.1",
"axios": "^0.18.0",
"copyfiles": "^1.2.0",
"cucumber": "^4.1.0",
"json-stringify-safe": "^5.0.1",
"lodash": "^4.17.5",
"npm": "^5.8.0",
"power-assert": "^1.4.4",
"random-word": "^2.0.0",
"sprintf-js": "^1.1.1",
"tmp-promise": "^1.0.4",
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/mocha": "^2.2.48",
"@types/node": "^8.9.5",
"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",
"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": "^3.6.3",
"typescript-formatter": "^7.0.1"
},
"directories": {
"test": "test"
},
"scripts": {
"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": "gql-gen --file ./src/graphql/schema.cortex.json --template typescript --no-schema --out src/typings/types.ts \"./src/**/*.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",
"test:cucumber": "cucumber-js --require 'build/smoke-test/**/*.js' \"smoke-test/features/**/*.feature\" \"--tags ${TAGS}\"",
"test:cucumber:one": "cucumber-js --require 'build/smoke-test/**/*.js' \"smoke-test/features/**/${TEST}.feature\"",
"smoke-test": "npm-run-all clean:js compile:ts test:cucumber",
"smoke-test:one": "npm-run-all clean:js compile:ts test:cucumber:one",
"test": "mocha --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"
},
"engines": {
"node": "8.x.x",
"npm": "5.x.x"
}
}