summary refs log tree commit diff stats
path: root/javascript/raindrops/package.json
blob: 3d6722cdb332ff9d9fe15e65e941de9f14aa7bbf (plain) (blame)
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
{
  "name": "@exercism/javascript-raindrops",
  "description": "Exercism exercises in Javascript.",
  "author": "Katrina Owen",
  "private": true,
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/exercism/javascript",
    "directory": "exercises/practice/raindrops"
  },
  "devDependencies": {
    "@babel/cli": "^7.14.8",
    "@babel/core": "^7.15.4",
    "@babel/plugin-syntax-bigint": "^7.8.3",
    "@babel/preset-env": "^7.15.0",
    "@exercism/eslint-config-javascript": "^0.4.0",
    "@types/jest": "^27.0.1",
    "@types/node": "^16.7.10",
    "babel-jest": "^27.1.0",
    "core-js": "^3.17.1",
    "eslint": "^7.32.0",
    "jest": "^26.6.3"
  },
  "dependencies": {},
  "scripts": {
    "test": "jest --no-cache ./*",
    "watch": "jest --no-cache --watch ./*",
    "lint": "eslint ."
  }
}