-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.22 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
{
"name": "running-calculations",
"version": "1.0.16",
"description": "A project containing functions to analyse a runners training data (from a specific run).",
"keywords": [
"running",
"training",
"jack daniels",
"calculations"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mattncott/running-calculations.git"
},
"bugs": {
"url": "https://github.com/mattncott/running-calculations/issues"
},
"files": [
"lib/**/*"
],
"author": "Matthew Nethercott",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.3",
"jest": "^25.4.0",
"prettier": "^2.0.5",
"ts-jest": "^25.2.1",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0"
},
"dependencies": {
"@types/node": "^13.13.2",
"typescript": "^3.8.3"
}
}