-
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.58 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.58 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": "@atomisthqa/cd-01",
"version": "0.1.0",
"description": "Atomist command to search StackOverflow",
"author": "Atomist",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/atomisthqa/cd-01.git"
},
"keywords": [
"atomist",
"automation",
"stackoverflow"
],
"homepage": "https://github.com/atomist-blogs/sof-command#readme",
"bugs": {
"url": "https://github.com/atomisthqa/cd-01/issues"
},
"dependencies": {
"@atomist/automation-client": "^0.2.2",
"app-root-path": "^2.0.1"
},
"devDependencies": {
"@types/app-root-path": "^1.2.4",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.46",
"@types/power-assert": "^1.4.29",
"espower-typescript": "^8.0.2",
"graphql-code-generator": "^0.8.13",
"mocha": "^3.5.3",
"npm-run-all": "^4.1.1",
"power-assert": "^1.4.4",
"rimraf": "^2.6.2",
"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": {
"autostart": "npm-run-all --print-label --parallel watch:compile watch:server",
"autotest": "supervisor --watch src,test --extensions ts --no-restart-on exit --quiet --exec npm -- test",
"build": "npm-run-all lint 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 compile:ts",
"compile:ts": "tsc --project .",
"fmt": "tsfmt --replace",
"git:info": "git-info",
"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",
"start": "npm-run-all compile git:info start:client",
"start:client": "atomist-client --open=true",
"start:server": "atomist-client",
"test": "mocha --compilers ts:espower-typescript/guess 'test/**/*.ts'",
"test:one": "mocha --compilers ts:espower-typescript/guess \"test/**/${TEST:-*.ts}\"",
"typedoc": "typedoc --mode modules --excludeExternals",
"watch:compile": "tsc --project . --watch",
"watch:server": "supervisor --watch build --quiet --exec npm -- run start:server"
},
"engines": {
"node": "8.7.x",
"npm": "5.4.x"
}
}