forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.49 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "x3-linkedlist",
"version": "1.2.0",
"description": "A doubly linked list implementation",
"keywords": [
"linkedlist",
"array",
"iterator",
"list",
"linked",
"doublelinked"
],
"homepage": "https://github.com/x3cion/x3-linkedlist",
"bugs": {
"url": "https://github.com/x3cion/x3-linkedlist/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x3cion/x3-linkedlist.git"
},
"license": "MIT",
"author": "Benno Dreißig",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf dist/ && tsc -p tsconfig.compile.json",
"doc": "rimraf docs/typedoc && typedoc src/",
"full": "npm run lint && npm run build && npm run test && npm run doc",
"lint": "eslint --fix \"**/*\"",
"prepublishOnly": "npm run full",
"test": "jest --coverage",
"watch": "rimraf dist/ && tsc -p tsconfig.compile.json -w"
},
"devDependencies": {
"@types/jest": "25.*",
"@types/node": "10.*",
"@typescript-eslint/eslint-plugin": "2.27.*",
"@typescript-eslint/parser": "2.27.*",
"eslint": "6.8.*",
"eslint-config-prettier": "6.10.*",
"eslint-plugin-jest": "23.8.*",
"eslint-plugin-json-format": "2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"jest": "25.3.0",
"prettier": "2.0.*",
"rimraf": "^3.0.2",
"ts-jest": "25.3.*",
"typedoc": "0.17.*",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "3.8.*"
},
"engines": {
"node": ">=10"
}
}