-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.47 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
{
"name": "fluid-ses",
"private": true,
"version": "0.0.1",
"description": "A syntax fluid mail sender library that uses SES",
"main": "lib/src/index.js",
"typings": "lib/src/index.d.ts",
"repository": "[email protected]:neoxia/fluid-ses.git",
"author": "Thibault Ruby <[email protected]>",
"license": "MIT",
"scripts": {
"test:all": "yarn workspaces foreach --topological-dev run test",
"test:templating": "yarn workspace fluid-ses-templating run test",
"test:core": "yarn workspace fluid-ses-core run test",
"build:all": "yarn workspaces foreach --topological-dev run build",
"build:templating": "yarn workspace fluid-ses-templating run build",
"build:core": "yarn workspace fluid-ses-core run build",
"lint": "yarn run eslint '{core,templating}/{src,test}/*.ts'",
"lint-fix": "yarn run eslint --fix '{core,templating}/{src,test}/*.ts'",
"audit": "yarn npm audit --all --recursive",
"audit:production": "yarn npm audit --all --recursive --environment production"
},
"workspaces": [
"core",
"templating"
],
"devDependencies": {
"@babel/cli": "~7.23.9",
"@babel/core": "~7.24.0",
"@babel/preset-env": "~7.24.0",
"@types/jest": "~29.5.12",
"@types/node": "~20.11.25",
"@typescript-eslint/eslint-plugin": "~7.1.1",
"@typescript-eslint/parser": "~7.1.1",
"eslint": "~8.57.0",
"jest": "~29.7.0",
"ts-jest": "~29.1.2",
"typescript": "~5.4.2"
},
"packageManager": "[email protected]"
}