-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 2.29 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
{
"name": "speedcurve",
"version": "2.0.10",
"description": "Official SpeedCurve CLI and Node.js API.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"speedcurve": "dist/cli/index.js"
},
"files": [
"dist/"
],
"scripts": {
"preversion": "npm run test && git diff-index --quiet HEAD",
"version": "npm run build && npm run commit-docs",
"postversion": "git push origin main --tags || echo 'Failed to push latest tag. Please do it manually with git push origin main --tags.'",
"clean": "rm -rfv docs/ dist/",
"test": "npm run lint && npm run compile-src && npm run jest",
"build": "npm run clean && npm run compile-src && npm run docs",
"watch": "tsc --watch",
"compile-src": "tsc",
"lint": "npm run eslint && npm run eslint-test",
"eslint-test": "eslint --fix '__tests__/**/*.test.js'",
"eslint": "eslint --fix 'src/**/*.ts'",
"jest": "jest",
"report-coverage": "cat coverage/lcov.info | coveralls && rm -rf coverage/",
"docs": "typedoc src/",
"commit-docs": "git add docs/ && git commit -m 'Build docs' || echo 'No documentation changes to commit'"
},
"prettier": {
"printWidth": 120
},
"repository": {
"type": "git",
"url": "git+https://github.com/SpeedCurve-Metrics/speedcurve-cli.git"
},
"author": "SpeedCurve <[email protected]> (https://speedcurve.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SpeedCurve-Metrics/speedcurve-cli/issues"
},
"homepage": "https://github.com/SpeedCurve-Metrics/speedcurve-cli#readme",
"dependencies": {
"npmlog": "^7.0.1",
"ramda": "^0.29.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"yargs": "^17.0.1"
},
"devDependencies": {
"@types/node": "^18.7.23",
"@types/npmlog": "^4.1.1",
"@types/ramda": "^0.28.15",
"@types/request-promise": "^4.1.47",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"coveralls": "^3.1.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.1.1",
"prettier": "^2.2.1",
"typedoc": "^0.23.24",
"typedoc-plugin-missing-exports": "^1.0.0",
"typedoc-theme-hierarchy": "^3.0.2",
"typescript": "^4.9.4"
}
}