-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.94 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
80
81
82
83
84
85
86
87
{
"name": "discogs-crate-digger",
"version": "1.0.9",
"description": "",
"keywords": [
"typescript",
"discogs",
"cli",
"spotify"
],
"author": {
"name": "Dominic Cullen",
"url": ""
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/domcull3n/discogs-crate-digger.git"
},
"main": "dist/index.js",
"bin": {
"discogs-crate-digger": "./dist/index.js",
"dcd": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run lint && tsc && cp ./src/callback/callback.html ./dist/callback/callback.html",
"changelog": "conventional-changelog -p angular -u",
"changelog:update": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "(rm -r ./.nyc_output || true) && (rm -r ./coverage || true) && (rm -r ./dist || true)",
"clean:all": "npm run clean && (rm -r ./node_modules || true)",
"cover": "nyc npm run test",
"cover:check": "nyc --check-coverage npm run test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint -c .eslintrc.js --ext .ts .",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts . && npm run lint.prettier",
"lint.prettier": "prettier src/**/*.ts --write",
"preversion": "npm run build && npm run cover:check",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"start": "npx ts-node src/index.ts",
"test": "mocha -r ts-node/register 'test/**/*.ts'",
"upgrade": "npx npm-check -u",
"version": "npm run build && npm run changelog:update"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/express": "^4.17.11",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.5",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"chai": "^4.1.2",
"conventional-changelog-cli": "^2.0.12",
"coveralls": "^3.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^7.30.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^35.4.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"mocha": "^8.1.3",
"nyc": "^15.0.0",
"prettier": "^2.3.2",
"source-map-support": "^0.5.12",
"ts-node": "^9.0.0",
"typescript": "^3.7.7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"axios": "^0.21.0",
"base64url": "^3.0.1",
"commander": "^8.1.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"open": "^7.4.0",
"path": "^0.12.7",
"retry-axios": "^2.4.0",
"sitka": "^1.0.5"
}
}