-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 925 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 925 Bytes
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
{
"name": "advent-of-code-2019",
"version": "1.0.0",
"description": "This is my second attempt at Advent of Code, my first time around I only lasted a couple of days. My language of choice is still ReasonML, same as last year.",
"main": "index.js",
"scripts": {
"build": "bsb -make-world",
"start": "cross-env BS_WATCH_CLEAR=true bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "is-ci \"test:ci\" \"test:watch\"",
"test:watch": "jest --watch",
"test:ci": "jest"
},
"keywords": [],
"author": "believer <rickard.laurin@gmail.com>",
"license": "MIT",
"dependencies": {
"tablecloth-bucklescript": "0.0.6"
},
"devDependencies": {
"@glennsl/bs-jest": "0.4.9",
"@semantic-release/changelog": "3.0.6",
"@semantic-release/git": "7.0.18",
"bs-platform": "7.0.1",
"cross-env": "6.0.3",
"is-ci-cli": "2.0.0",
"jest-watch-typeahead": "0.4.2"
}
}