-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 883 Bytes
/
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
{
"name": "@fetsorn/csvs-js",
"description": "csvs: comma-separated value store, js bindings",
"version": "0.17.1",
"author": "Anton Davydov <[email protected]>",
"license": "MIT",
"exports": "./src/index.js",
"type": "module",
"files": [
"src/"
],
"scripts": {
"lint": "eslint --fix src",
"test": "yarn test:node && yarn test:wasm",
"test:node": "yarn node --experimental-vm-modules $(yarn bin jest)",
"test:wasm": "serve",
"coverage": "yarn node --experimental-vm-modules ./node_modules/.bin/jest --coverage"
},
"devDependencies": {
"@fetsorn/wasm-grep": "0.2.0",
"@jest/globals": "^29.0.3",
"@stylistic/eslint-plugin": "^1.7.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^27.5.1",
"serve": "^14.0.1",
"yarn": "^1.22.17"
},
"dependencies": {
"papaparse": "^5.4.1"
}
}