loom/package.json

22 lines
521 B
JSON
Raw Normal View History

2023-03-30 16:14:27 -07:00
{
"name": "@thefarce/loom",
"version": "0.1.0",
2023-11-15 06:47:20 -08:00
"description": "A module for weaving form data with content data",
2023-03-30 16:14:27 -07:00
"type": "module",
2023-11-15 06:47:20 -08:00
"main": "index.mjs",
2023-03-30 16:14:27 -07:00
"scripts": {
2023-11-15 06:47:20 -08:00
"lint": "eslint '**/*.?js'",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
2023-03-30 16:14:27 -07:00
},
"author": "Sir Robert Burbridge",
"devDependencies": {
2023-11-15 06:47:20 -08:00
"eslint": "^8.32.0",
"eslint-plugin-jest": "^27.2.1",
"jest": "^29.7.0"
2023-04-07 17:49:14 -07:00
},
"dependencies": {
"unist-util-is": "^6.0.0",
2023-11-15 06:47:20 -08:00
"unist-util-visit-parents": "^6.0.1"
2023-03-30 16:14:27 -07:00
}
}