-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.11 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
{
"name": "file-collector",
"version": "1.0.0",
"description": "File collector for topo",
"main": "./lib/index.js",
"bin": {
"topo-file-collector": "./lib/index.js"
},
"scripts": {
"start-watch": "nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"start": "ts-node src/index.ts",
"create": "npm run build && npm run test",
"build": "tsc -p .",
"test": "yarn jest src/",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"prettier": "prettier --single-quote --trailing-comma es5 --write 'src/**/*.{ts,js,graphql}?(x)'",
"prettier-fix": "yarn prettier --fix",
"lint": "yarn tslint -c tslint.json 'src/**/*.{ts,js}?(x)'",
"lint-fix": "yarn run lint --fix",
"copyright": "copyright-header --copyrightHolder \"Thoughtworks Inc. All rights reserved\" --templateId \"apache\"",
"copyright-fix": "yarn run copyright --fix",
"package": "yarn build && pkg lib/index.js --targets node10-linux-x64,node10-macos-x64,node10-win-x64 -o packaged/file-collector"
},
"repository": "[email protected]:architecture-topography/file-collector.git",
"dependencies": {
"@types/figlet": "^1.5.2",
"@types/node": "^14.14.41",
"ajv": "^6.12.6",
"chalk": "^4.1.1",
"clear": "^0.1.0",
"commander": "^6.2.1",
"cross-fetch": "3.1.4",
"figlet": "^1.5.0",
"graphql": "^15.5.1",
"graphql-request": "^3.4.0",
"graphql-tag": "^2.12.5",
"js-logger": "^1.6.1",
"nodemon": "^2.0.9",
"path": "^0.12.7",
"prettier": "^2.3.2",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^26.0.24",
"@types/mocha": "^8.2.3",
"copyright-header": "^0.4.4",
"jest": "^26.6.3",
"jest-mock-process": "^1.4.1",
"last-release-git": "^0.0.3",
"pkg": "^4.5.1",
"semantic-release": "^17.4.4",
"ts-jest": "^26.5.6",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
}
}