-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.1 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
{
"name": "rescript-envsafe",
"version": "5.0.0",
"description": "🔒 Makes sure you don't accidentally deploy apps with missing or invalid environment variables",
"homepage": "https://github.com/DZakh/rescript-envsafe#readme",
"keywords": [
"ReScript",
"Env",
"Environment variables",
"Parse",
"Safe",
"envsafe",
"rescript-schema"
],
"bugs": {
"url": "https://github.com/DZakh/rescript-envsafe/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DZakh/rescript-envsafe.git"
},
"license": "MIT",
"author": "Dmitry Zakharov <[email protected]>",
"main": "index.js",
"files": [
"src/**/*.res",
"src/**/*.resi",
"rescript.json"
],
"scripts": {
"res:build": "rescript",
"res": "rescript -w",
"test": "ava"
},
"ava": {
"files": [
"__tests__/**/*_test.bs.js"
]
},
"devDependencies": {
"@dzakh/rescript-ava": "3.1.0",
"ava": "6.2.0",
"rescript": "11.1.4",
"rescript-schema": "9.0.1"
},
"peerDependencies": {
"rescript": "11.x",
"rescript-schema": "9.x"
}
}