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 2
/
package.json
79 lines (79 loc) · 2.76 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
{
"name": "@atomist/black-duck-automation",
"version": "0.7.1",
"description": "Atomist automation seed project",
"author": "Atomist",
"license": "SEE LICENSE IN LICENSE",
"repository": {
"type": "git",
"url": "https://github.com/atomist/black-duck-automation.git"
},
"homepage": "https://github.com/atomist/black-duck-automation#readme",
"bugs": {
"url": "https://github.com/atomist/black-duck-automation/issues"
},
"keywords": [
"atomist",
"automation",
"seed"
],
"dependencies": {
"@atomist/automation-client": "^0.14.1",
"app-root-path": "^2.0.1",
"properties": "^1.2.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.1",
"@types/power-assert": "^1.4.29",
"axios-mock-adapter": "^1.13.1",
"copyfiles": "^1.2.0",
"espower-typescript": "^8.1.3",
"graphql-code-generator": "^0.8.14",
"mocha": "^5.0.0",
"nodemon": "^1.14.12",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"supervisor": "^0.12.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.3",
"typescript-formatter": "^7.2.0"
},
"directories": {
"test": "test"
},
"scripts": {
"autostart": "nodemon --watch src --ext ts --exec ts-node -- node_modules/@atomist/automation-client/start.client.js",
"autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "npm-run-all lint compile test typedoc",
"clean": "npm-run-all clean:js clean:build",
"clean:build": "npm-run-all clean:gql clean:ts clean:run",
"clean:dist": "npm-run-all clean clean:npm",
"clean:gql": "rimraf src/typings/types.ts",
"clean:js": "rimraf \"{src,test}/**/*.js\"",
"clean:npm": "rimraf node_modules",
"clean:run": "rimraf *-v8.log profile.txt build",
"clean:ts": "rimraf build",
"compile": "npm-run-all git:info compile:gql compile:ts",
"compile:gql": "npm-run-all gql:gen gql:copy",
"compile:ts": "tsc --project .",
"fmt": "tsfmt --replace",
"git:info": "atomist git",
"gql:copy": "copyfiles \"src/**/*.graphql\" build",
"gql:gen": "atomist gql-gen --no-install \"{graphql,src}/**/*.graphql\"",
"lint": "tslint --format verbose --project . --exclude \"{build,node_modules}/**\" \"**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "atomist start --no-install --no-compile",
"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"
},
"engines": {
"node": "9.x.x",
"npm": "5.x.x"
}
}