forked from wrkout/exercises.json
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.37 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
{
"name": "exercises.json",
"version": "1.0.0",
"description": "exercises.json - Free open public domain exercise data in JSON format",
"repository": {
"type": "git",
"url": "git://github.com/wrkout/exercises.json.git"
},
"scripts": {
"lint": "eslint . --ext .ts --quiet",
"test": "jest",
"build:json": "ts-node scripts/json-builder.ts",
"build:psql": "ts-node scripts/psql-builder.ts"
},
"keywords": [
"exercise",
"fitness",
"gym",
"open data"
],
"author": "Ollie Jennings <[email protected]>",
"license": "Public Domain",
"bugs": {
"url": "https://github.com/wrkout/exercises.json/issues"
},
"homepage": "https://github.com/wrkout/exercises.json",
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/lodash.snakecase": "^4.1.9",
"@types/node": "^20.10.5",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.1.1",
"request": "^2.88.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"knex": "^3.1.0",
"lodash.snakecase": "^4.1.1",
"uuid": "^9.0.1"
}
}