This repository has been archived by the owner on Mar 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.44 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
{
"name": "@atomist/npm-automations",
"version": "0.1.0",
"description": "Atomist automations for interacting with NPM modules",
"author": "Atomist, Inc.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/npm-automations.git"
},
"keywords": [
"atomist",
"automation",
"npm"
],
"homepage": "https://github.com/atomist/npm-automations#readme",
"bugs": {
"url": "https://github.com/atomist/npm-automations/issues"
},
"dependencies": {
"@atomist/automation-client": "^0.1.38",
"@atomist/slack-messages": "^0.12.0",
"app-root-path": "^2.0.1",
"axios": "^0.16.2"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.31",
"@types/power-assert": "^1.4.29",
"espower-typescript": "^8.0.2",
"graphql-code-generator": "^0.8.13",
"mocha": "^3.5.3",
"nodemon": "^1.12.0",
"npm-run-all": "^4.1.1",
"power-assert": "^1.4.4",
"supervisor": "^0.12.0",
"ts-node": "^3.3.0",
"tslint": "^5.4.3",
"typedoc": "^0.8.0",
"typescript": "2.5.2",
"typescript-formatter": "^6.0.0"
},
"directories": {
"test": "test"
},
"scripts": {
"autotest": "supervisor -q -n exit -e ts -x npm -- run test",
"clean": "rm -f *-v8.log; rm -f profile.txt; rm -rf build; rm -rf target",
"gql:gen": "gql-gen --file node_modules/@atomist/automation-client/graph/schema.cortex.json --template typescript -m --out ./src/typings/ \"./graphql/**/*.graphql\"",
"compile": "npm run gql:gen && tsc -p .",
"fmt": "tsfmt --replace",
"lint": "tslint '**/*.ts' --exclude 'node_modules/**' --exclude 'build/**' -t verbose",
"lint-fix": "tslint --fix '**/*.ts' --exclude 'node_modules/**' --exclude 'build/**' -t verbose",
"testone": "mocha --compilers ts:espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
"test": "mocha --compilers ts:espower-typescript/guess \"test/**/*.ts\"",
"benchmark": "mocha --prof --compilers ts:espower-typescript/guess \"test/**/*Benchmark.ts\"; node --prof-process isolate-* > profile.txt",
"start": "npm run compile && $(npm bin)/atomist-client --open=true",
"autostart": "npm-run-all --parallel watch:build watch:server --print-label",
"watch:build": "tsc --watch",
"watch:server": "nodemon node_modules/@atomist/automation-client/start.client.js --watch './build'"
},
"engines": {
"node": "8.5.x",
"npm": "5.3.x"
}
}