-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.05 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.05 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
{
"name": "@microcode/linked-list",
"version": "0.0.2",
"author": "Jesper Svennevid <jesper@microcode.se>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh//git@github.com/microcode/linked-list.git"
},
"license": "MIT",
"homepage": "https://github.com/microcode/linked-list#readme",
"devDependencies": {
"@types/chai": "== 4.2.11",
"@types/mocha": "== 10.0.1",
"@types/node": "== 14.0.27",
"@typescript-eslint/eslint-plugin": "== 5.59.5",
"@typescript-eslint/parser": "== 5.59.5",
"chai": "== 4.3.7",
"eslint": "== 8.40.0",
"mocha": "== 10.2.0",
"ts-node": "== 10.9.1",
"typescript": "== 5.0.4"
},
"files": [
"dist/**/*",
"src/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "mocha -r ts-node/register 'src/**/*.spec.ts'",
"lint": "eslint --c .eslintrc --ext .ts src",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test && yarn run lint",
"preversion": "yarn run lint"
}
}