forked from exercism/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "@exercism/javascript",
"description": "Exercism exercises in Javascript.",
"author": "Katrina Owen",
"contributors": [
"Derk-Jan Karrenbeld <[email protected]> (https://derk-jan.com)",
"Tejas Bubane (https://tejasbubane.github.io/)"
],
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.15.4",
"@exercism/eslint-config-javascript": "^0.5.0",
"@types/jest": "^26.0.24",
"@types/node": "^16.9.0",
"babel-jest": "^26.6.3",
"chalk": "^4.1.2",
"core-js": "^3.17.2",
"diff": "^5.0.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"prettier": "^2.3.2",
"shelljs": "^0.8.4"
},
"dependencies": {},
"scripts": {
"test": "jest --no-cache ./*",
"watch": "jest --no-cache --watch ./*",
"lint": "eslint ."
}
}