forked from FlatFilers/flatfile-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 KB
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
58
59
60
61
{
"name": "@flatfile/plugins",
"version": "0.0.0",
"description": "A library of open-source plugins for developers working with the Flatfile Platform.",
"engines": {
"node": ">=16"
},
"workspaces": [
"plugins/*",
"support/*",
"utils/*"
],
"scripts": {
"clean": "find ./ '(' -name 'node_modules' -o -name 'dist' -o -name '.turbo' -o -name '.parcel-cache' ')' -type d -exec rm -rf {} +",
"test": "turbo test --concurrency=1",
"build": "turbo build",
"lint": "prettier --check **/*.ts",
"changeset": "changeset",
"changeset-apply": "changeset version",
"release": "turbo build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FlatFilers/flatfile-plugins.git"
},
"keywords": [
"flatfile",
"data",
"typescript",
"node.js"
],
"author": "Flatfile, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/FlatFilers/flatfile-plugins/issues"
},
"homepage": "https://github.com/FlatFilers/flatfile-plugins#readme",
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@flatfile/listener": "^0.3.15",
"@flatfile/utils-testing": "^0.0.2",
"@parcel/packager-ts": "^2.9.1",
"@parcel/transformer-typescript-types": "^2.9.1",
"@types/jest": "^29.5.0",
"@types/node": "^20.2.5",
"dotenv-expand": "^10.0.0",
"dotenv-flow": "^3.2.0",
"jest": "^29.5.0",
"parcel": "latest",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"turbo": "^1.10.2",
"typescript": "^5.0.4"
},
"optionalDependencies": {
"@parcel/watcher-linux-x64-glibc": "^2.3.0"
},
"dependencies": {
"axios": "^1.5.1"
}
}