-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 879 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 879 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
{
"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-cli test:ci test:watch",
"test:watch": "jest --watch",
"test:ci": "jest"
},
"keywords": [],
"author": "believer <rickard.laurin@gmail.com>",
"license": "MIT",
"devDependencies": {
"@glennsl/bs-jest": "0.7.0",
"@semantic-release/changelog": "6.0.2",
"@semantic-release/git": "10.0.1",
"bs-platform": "9.0.2",
"cross-env": "7.0.3",
"is-ci-cli": "2.2.0",
"jest": "29.3.1",
"jest-watch-typeahead": "2.2.1"
}
}