-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1007 Bytes
/
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
{
"name": "@jmagaram/rescript-seq",
"version": "4.4.1",
"module": "",
"description": "Lazy sequences for ReScript.",
"keywords": [
"rescript",
"sequences",
"iterables",
"Seq"
],
"main": "index.js",
"scripts": {
"test": "node tests/TestSuite.bs.js",
"test:local": "NODE_ENV=development node tests/TestSuite.bs.js",
"test:watch": "nodemon --exec \"NODE_ENV=development node\" tests/TestSuite.bs.js",
"res:build": "rescript build",
"res:dev": "rescript build -w",
"res:clean": "rescript clean"
},
"author": "Justin Magaram",
"license": "ISC",
"dependencies": {
"@rescript/core": "^1.1.0",
"rescript": "^11.0.1"
},
"files": [
"rescript.json",
"src/**/*.res",
"src/**/*.resi",
"src/**/*.gen.tsx"
],
"devDependencies": {
"nodemon": "^2.0.22"
},
"homepage": "https://github.com/jmagaram/rescript-seq#readme",
"repository": {
"type": "git",
"url": "https://github.com/jmagaram/rescript-seq.git"
}
}