-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.1 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": "advent-of-ts",
"description": "TypeScript Solutions for Advent of Code",
"version": "1.0.0",
"main": "src/index.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix",
"unit": "ts-node ./node_modules/jasmine/bin/jasmine --config=jasmine.json",
"test": "npm run lint && npm run unit",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balintsoos/advent-of-code-ts.git"
},
"author": "Balint Soos",
"license": "MIT",
"bugs": {
"url": "https://github.com/balintsoos/advent-of-code-ts/issues"
},
"homepage": "https://github.com/balintsoos/advent-of-code-ts#readme",
"devDependencies": {
"@types/jasmine": "3.6.2",
"@types/node": "14.14.10",
"@types/ramda": "0.27.32",
"@typescript-eslint/eslint-plugin": "4.8.2",
"@typescript-eslint/parser": "4.8.2",
"eslint": "7.14.0",
"jasmine": "3.6.3",
"jasmine-spec-reporter": "6.0.0",
"ts-node": "9.0.0",
"typescript": "4.1.2"
},
"dependencies": {
"ramda": "0.27.1"
}
}