forked from rescript-lang/rescript-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.26 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
52
53
54
55
{
"name": "rescript-project-template",
"version": "0.0.1",
"description": "Rescrip project template",
"main": "TODO.js",
"scripts": {
"build": "rescript",
"clean": "rescript clean",
"start": "rescript build -w",
"test": "jest"
},
"keywords": [
"rescript"
],
"contributors": [
"Roman Pominov"
],
"homepage": "https://github.com/rpominov/rescript-project-template#readme",
"bugs": "https://github.com/rpominov/rescript-project-template/issues",
"repository": "github:rpominov/rescript-project-template",
"license": "MIT",
"dependencies": {
"rescript": "^10.0.1"
},
"devDependencies": {
"jest": "^29.3.1"
},
"jest": {
"reporters": [
"default",
"github-actions"
],
"testLocationInResults": true,
"testMatch": [
"**/js/tests/*_test.bs.js"
],
"snapshotResolver": "./tests/snapshotResolver.js"
},
"sdc-check": {
"options": {
"daysBeforeUpgradeToNewVersion": 7
},
"errors": [
"lockfile-is-not-safe",
"package-is-too-new",
"install-scripts",
"obfuscated-code",
"has-os-scripts",
"dangerous-shell-commands",
"released-after-long-period-of-inactivity",
"too-many-decision-makers",
"no-source-code"
]
}
}