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
|
{
"name": "@exercism/javascript",
"description": "Exercism exercises in Javascript.",
"author": "Katrina Owen",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.14",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"core-js": "^3.8.1",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3"
},
"jest": {
"modulePathIgnorePatterns": [
"package.json"
]
},
"scripts": {
"test": "jest --no-cache ./*",
"watch": "jest --no-cache --watch ./*",
"lint": "eslint ."
},
"license": "MIT",
"dependencies": {},
"version": "1.0.0"
}
|