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
|
{
"name": "elxr",
"version": "0.0.2",
"description": "Regular expression-like syntax generalized for list operations",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/phenax/elxr.git",
"author": "Akshay Nair <phenax5@gmail.com>",
"license": "MIT",
"keywords": [
"regex",
"regular",
"expressions",
"list",
"typescript"
],
"scripts": {
"tsc": "tsc --emitDeclarationOnly --outDir lib",
"test": "jest",
"format": "prettier --write ./src/**/*.ts ./tests/**/*.ts",
"build": "rimraf lib && node ./esbuild.js && npm run tsc"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"esbuild": "^0.14.10",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"typescript": "^4.5.4"
},
"dependencies": {
"fp-ts": "^2.11.6"
}
}
|