forked from OpenFn/kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.46 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
{
"name": "@openfn/kit",
"version": "1.0.0",
"private": true,
"description": "Next-generation OpenFN tooling",
"scripts": {
"build": "pnpm run clean && pnpm -r --filter=./packages/* run build",
"clean:local": "rimraf dist/**/*",
"clean": "rimraf packages/*/dist",
"export": "sh scripts/export.sh",
"format": "prettier --write packages/*/src",
"generate-slack-report": "node ./scripts/slack-publish-message.js",
"install:global": "pnpm build && pnpm run pack && node ./build/install-global.js",
"install:openfnx": "pnpm install:global",
"pack:local": "pnpm run pack && node ./build/pack-local.js",
"pack": "pnpm -r run pack",
"setup": "rm -rf node_modules && rm -rf ./packages/*/node_modules && pnpm i",
"test:format": "prettier --check packages/*/src",
"test:integration": "pnpm -r --filter=./integration-tests/* run test",
"test:types": "pnpm -r --filter=./packages/* run test:types",
"test": "pnpm -r --filter=./packages/* run test",
"typesync": "pnpm exec typesync && pnpm -r exec typesync && pnpm install"
},
"keywords": [],
"author": "Open Function Group",
"license": "ISC",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@slack/web-api": "^6.12.1",
"@types/gunzip-maybe": "^1.4.0",
"@types/rimraf": "^3.0.2",
"@types/tar-stream": "^2.2.2",
"gunzip-maybe": "^1.4.2",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"tar-stream": "^3.0.0",
"typesync": "^0.13.0"
}
}