-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 929 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
{
"name": "tablecloth-rescript",
"description": "A portable standard library enhancement for Rescript.",
"version": "0.1.0",
"repository": "https://github.com/darklang/tablecloth",
"private": false,
"contributors": [
"Paul Biggar <[email protected]>"
],
"keywords": [
"Rescript",
"BuckleScript",
"ReasonML",
"Utility"
],
"license": "MIT",
"devDependencies": {
"@glennsl/rescript-jest": "^0.10.0",
"rescript": "11.0.0-rc.5"
},
"scripts": {
"clean": "rescript clean",
"build": "rescript build -with-deps",
"test": "jest",
"integration-test": "cd integration-test && npm install && npm run build",
"format": "echo todo",
"build:watch": "rescript build -with-deps -w"
},
"jest": {
"testMatch": [
"<rootDir>/test/*Test.bs.js",
"<rootDir>/test/*Test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/"
]
}
}