forked from fauna-labs/fauna-schema-migrate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.28 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "fauna-schema-migrate",
"version": "0.1.3-beta",
"description": "Fauna schema migration tool that helps to manage resources such as collections, indexes, roles, functions, access providers as code.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && cpy 'templates/*.js' '../dist/' --cwd=src --parents",
"watch": "tsc -w",
"test": "ava -T 200s --fail-fast",
"install-peers": "install-peers -f"
},
"bin": {
"fauna-schema-migrate": "./dist/index.js"
},
"license": "0BSD",
"bugs": {
"url": "https://github.com/fauna-brecht/fauna-schema-migrate/issues"
},
"homepage": "https://github.com/fauna-brecht/fauna-schema-migrate#readme",
"author": "Brecht De Rooms",
"dependencies": {
"@babel/parser": "^7.12.7",
"@types/deep-equal": "^1.0.1",
"@types/fs-extra": "^8.0.0",
"@types/ink": "^2.0.3",
"@types/ink-big-text": "^1.2.0",
"@types/ink-divider": "^2.0.1",
"@types/ink-gradient": "^2.0.1",
"@types/ink-select-input": "^3.0.0",
"@types/js-beautify": "^1.13.1",
"@types/lodash.clonedeep": "^4.5.6",
"@types/node": "^12.19.8",
"@types/prettier": "^2.1.5",
"@types/react": "^17.0.0",
"@types/shelljs": "^0.8.8",
"arr-rotate": "^1.0.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"deep-equal": "^2.0.5",
"esbuild": "^0.8.17",
"fs-extra": "^8.1.0",
"ink-big-text": "^1.2.0",
"ink-divider": "^3.0.0",
"ink-gradient": "^2.0.0",
"ink-link": "^2.0.0",
"ink-select-input": "github:fauna-brecht/ink-select-input",
"ink-spinner": "^4.0.1",
"ink-syntax-highlight": "^1.0.1",
"js-beautify": "^1.13.0",
"lodash.clonedeep": "^4.5.0",
"prettier": "^2.2.1",
"react": "^17.0.1",
"react-hookstore": "^1.5.1",
"shelljs": "^0.8.4"
},
"peerDependencies": {
"faunadb": "^4.0.3"
},
"devDependencies": {
"@types/sinon": "^9.0.9",
"ava": "^3.14.0",
"dotenv": "^8.2.0",
"install-peers-cli": "^2.2.0",
"sinon": "^9.2.2",
"ts-node": "^8.10.2",
"typescript": "^4.1.3",
"ts-node-dev": "^1.1.1",
"cpy-cli": "^3.1.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"keywords": [
"fauna",
"schema",
"migrations",
"iac"
]
}