-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.09 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
{
"name": "@glennsl/rescript-jest",
"version": "0.11.0",
"description": "Rescript bindings to the Jest testing framework",
"author": "glennsl",
"license": "MIT",
"scripts": {
"build": "rescript build -with-deps",
"clean": "rescript clean",
"start": "rescript build -w",
"test": "npm run build && jest",
"test-ci": "npm run build && jest --coverage --coverageDirectory='coverage'",
"watch:rescript": "rescript build -with-deps -w",
"watch:jest": "jest --coverage --watchAll",
"watch:screen": "screen -c .screenrc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/glennsl/rescript-jest.git"
},
"keywords": [
"Rescript",
"jest",
"test"
],
"bugs": {
"url": "https://github.com/glennsl/rescript-jest/issues"
},
"homepage": "https://github.com/glennsl/rescript-jest#readme",
"files": [
"src/",
"bsconfig.json"
],
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"babel-jest": "^27.3.1",
"rescript": "^11.1.0"
},
"dependencies": {
"jest": "^27.3.1"
}
}