-
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) · 1007 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1007 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
38
{
"name": "@microcode/simplemetrics",
"version": "0.0.1",
"author": "Jesper Svennevid <jesper@microcode.se>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@microcode/linked-list": "== 0.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"@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/**/*",
"LICENSE.md"
],
"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"
}
}