-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.8 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
{
"name": "integreat-transformers",
"version": "1.5.0",
"description": "Core transformers for integreat",
"author": "Kjell-Morten Bratsberg Thorsen <kjellmorten@integreat.io>",
"license": "UNLICENSED",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "node --import tsx --test --enable-source-maps --experimental-test-coverage --test-reporter node-test-reporter 'src/**/*.test.ts'",
"test:legacy": "node --import tsx --no-deprecation --test --enable-source-maps src/*.test.ts src/**/*.test.ts",
"test:inspect": "node --inspect node_modules/ava/profile.js",
"test:watch": "npm run dev",
"dev": "node --import tsx --test --enable-source-maps --test-reporter node-test-reporter --watch \"src/**/*.test.ts\" || exit 0",
"build": "tsc",
"prepublishOnly": "npm run build",
"lint": "eslint src",
"typecheck": "tsc --noEmit --strict",
"verify": "npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/integreat-io/integreat-transformers.git"
},
"bugs": {
"url": "https://github.com/integreat-io/integreat-transformers/issues"
},
"homepage": "https://github.com/integreat-io/integreat-transformers#readme",
"engines": {
"node": ">= 18"
},
"dependencies": {
"ajv": "^8.17.1",
"csv-parse": "^5.6.0",
"csv-stringify": "^6.5.2",
"he": "^1.2.0",
"luxon": "^3.5.0",
"map-any": "^1.0.0",
"map-transform": "^1.5.3",
"nanoid": "^5.0.9",
"uuid": "^11.0.5"
},
"devDependencies": {
"@integreat/ts-dev-setup": "^8.0.0",
"@types/he": "^1.2.3",
"@types/luxon": "^3.4.2",
"@types/mustache": "^4.2.5",
"@types/node": "^22.10.6",
"@types/uuid": "^10.0.0",
"integreat": "^1.5.10"
}
}