-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
35 lines (35 loc) · 847 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
{
"name": "reasonz",
"version": "0.0.0",
"description": "A Haskell fan fiction for ReasonML",
"repository": {
"type": "git",
"url": "git+https://github.com/shrynx/reasonz.git"
},
"keywords": [
"reason",
"reasonml",
"haskell",
"typeclasses"
],
"author": "Shriyans Bhatnagar <shriyansbhatnagar@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/shrynx/reasonz/issues"
},
"homepage": "https://github.com/shrynx/reasonz#readme",
"scripts": {
"build": "bsb -make-world",
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"test": "npm run build && jest --coverage",
"watch:test": "jest --coverage --watchAll"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.2",
"bs-platform": "^3.1.0"
},
"jest": {
"testEnvironment": "node"
}
}