-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "challenges",
"version": "1.0.0",
"description": "I loved doing some sharp programming challenges. I started from Hackerrank but then found so many other great spots to play with.",
"main": "index.js",
"scripts": {
"test": "jest --watch",
"genmd": "node readmegen/main.js && git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm run genmd"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/tzookb/programming-challenges.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tzookb/programming-challenges/issues"
},
"homepage": "https://github.com/tzookb/programming-challenges#readme",
"devDependencies": {
"babel-jest": "^24.8.0",
"babel-plugin-transform-decorators-legacy": "^1.3.5",
"babel-preset-es2015": "^6.24.1",
"husky": "^4.2.3",
"jest": "^29.7.0",
"jest-cli": "^29.7.0"
},
"dependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"node-fetch": "^2.6.7"
}
}