-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.07 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
{
"name": "rescript-stripe",
"description": "💸 Stripe Billing as a Config",
"version": "0.3.0",
"keywords": [
"rescript",
"stripe",
"billing",
"config",
"subscription",
"saas"
],
"license": "MIT",
"author": "Envio contributors <[email protected]>",
"scripts": {
"build": "rescript",
"res": "rescript -w",
"test": "ava",
"sync": "node scripts/Sync.res.mjs",
"subscribe": "node scripts/Subscribe.res.mjs"
},
"homepage": "https://github.com/enviodev/rescript-stripe#readme",
"bugs": {
"url": "https://github.com/enviodev/rescript-stripe/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/enviodev/rescript-stripe.git"
},
"ava": {
"files": [
"__tests__/**/*_test.res.mjs"
]
},
"files": [
"src",
"rescript.json"
],
"dependencies": {
"rescript-schema": "^9.3.0",
"stripe": "^17.6.0"
},
"devDependencies": {
"@dzakh/rescript-ava": "^3.1.0",
"ava": "^6.2.0",
"rescript": "11.1.4"
},
"peerDependencies": {
"rescript": "^11.1.0"
}
}