-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 877 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 877 Bytes
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
{
"name": "knight-path",
"version": "1.0.3",
"description": "A data structure to work with paths",
"main": "lib/path.js",
"types": "lib/path.d.ts",
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^14.14.41",
"chai": "^4.2.0",
"mocha": "^6.2.2",
"node": "^15.14.0",
"ts-node": "^9.1.1",
"typescript": "^3.7.2"
},
"scripts": {
"test": "mocha -r ts-node/register \"test/**/*.test.ts\"",
"build": "rm -rf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/c0deritter/knight-path.git"
},
"keywords": [
""
],
"author": "Coderitter GmbH",
"license": "ISC",
"bugs": {
"url": "https://github.com/c0deritter/knight-path/issues"
},
"homepage": "https://github.com/c0deritter/knight-path#readme"
}