-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 1008 Bytes
/
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
{
"name": "@exercism/javascript-freelancer-rates",
"description": "Exercism concept exercise on numbers",
"author": "Derk-Jan Karrenbeld <derk-jan+github@karrenbeld.info>",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/exercism/javascript",
"directory": "exercises/concept/freelancer-rates"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/plugin-syntax-bigint": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"@exercism/eslint-config-javascript": "^0.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.2",
"babel-jest": "^27.2.4",
"core-js": "^3.18.1",
"eslint": "^7.32.0",
"jest": "^26.6.3"
},
"dependencies": {},
"scripts": {
"build": "babel freelancer-rates.js -d dist",
"start": "npm run build && node dist/freelancer-rates.js",
"test": "jest --no-cache ./*",
"watch": "jest --no-cache --watch ./*",
"lint": "eslint ."
}
}