-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 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
{
"name": "dijkstra",
"version": "1.0.0",
"author": "Ralph Varjabedian",
"license": "MIT",
"description": "dijkstra's various implementations for educational purposes",
"scripts": {
"test": "npx nyc mocha --all --include src/** -r ts-node/register tests/**/*.ts",
"build": "npm run lint && npm run prettier:fix && npm run test && npm run compile",
"compile": "rimraf dist && tsc --project tsconfig.build.json",
"prettier:fix": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
"lint": "npx eslint ./src --fix"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsc": "^2.0.4",
"typescript": "^4.8.3"
}
}