-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.12 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "measuresuite",
"version": "2.2.2",
"description": "Typescript wrapper around libmeasuresuite",
"main": "./ts/dist/index.js",
"types": "./ts/dist/dts/index.d.ts",
"type": "module",
"files": [
"./lib/src/**/*.c",
"./lib/src/**/*.h",
"./ts/src/binding/*.c",
"./ts/src/binding/*.h",
"./binding.gyp",
"./ts/dist/index.js",
"./ts/dist/dts",
"./ts/dist/Readme.md"
],
"cpu": [
"x64"
],
"os": [
"linux"
],
"repository": {
"type": "git",
"url": "https://github.com/0xADE1A1DE/MeasureSuite.git"
},
"author": "[email protected]",
"contributors": [
],
"license": "Apache-2.0",
"scripts": {
"test": "vitest -r ts ",
"test-cov": "vitest -r ts --coverage",
"lint-check": "eslint ts",
"lint-fix": "eslint ts --fix",
"format-check": "npx prettier --check \"./ts/**/*.ts\" \"!./ts/dist\"",
"build": "rollup --config ts/rollup.config.js"
},
"gypfile": true,
"prettier": {
"trailingComma": "all",
"printWidth": 110
},
"dependencies": {
"measuresuite-native-module": "file:./build/Release/measuresuite.node"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
"@types/node": "^20.5.0",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"@vitest/coverage-v8": "^0.34.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"node-gyp": "^9.4.0",
"prettier": "^3.0.1",
"rollup": "^3.28.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"vite": "^4.4.9",
"vitest": "^0.34.1"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"ignorePatterns": [
"*.js",
"dist",
"coverage"
],
"rules": {
"@typescript-eslint/no-unused-vars": [
1,
{
"argsIgnorePattern": "^_"
}
]
}
}
}