-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.8 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.8 KB
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
{
"name": "atomist-example",
"version": "0.1.0",
"description": "Sample Atomist automation client",
"author": "Atomist.",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/atomist/automation-client-samples-ts.git"
},
"keywords": [
"atomist",
"parser"
],
"homepage": "https://github.com/atomist/automation-client-samples-ts#readme",
"bugs": {
"url": "https://github.com/atomist/automation-client-samples-ts/issues"
},
"dependencies": {
"@atomist/automation-client": "^0.1.46",
"@atomist/microgrammar": "^0.7.0",
"@atomist/slack-messages": "^0.11.0",
"app-root-path": "^2.0.1",
"cfenv": "^1.0.4"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.34",
"@types/power-assert": "^1.4.29",
"@types/tmp": "0.0.33",
"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",
"tmp": "0.0.33",
"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 -- test",
"build": "npm run lint && npm run compile && npm test",
"clean": "npm run clean-js ; rm -rf *-v8.log profile.txt build",
"clean-js": "find src test -type f -name '*.js' -print0 | xargs -0 rm -f",
"compile": "npm run gql:gen && tsc -p .",
"distclean": "npm run clean ; rm -rf node_modules",
"fmt": "tsfmt --replace",
"git:info": "node $NODE_DEBUG_OPTION --trace-warnings node_modules/@atomist/automation-client/git.info.js",
"gql:gen": "gql-gen --file node_modules/@atomist/automation-client/graph/schema.cortex.json --template typescript -m --out ./src/typings/ \"./graphql/**/*.graphql\"",
"lint": "tslint --format verbose --project . --exclude '{build,node_modules}/**' '**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --compilers ts:espower-typescript/guess 'test/**/*.ts'",
"testone": "mocha --compilers ts:espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
"typedoc": "typedoc --mode modules --excludeExternals",
"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"
}
}