forked from state-machine-systems/JsonCodec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 892 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
{
"name": "json-codec",
"version": "0.1.0",
"description": "JSON combinator library for BuckleScript/Reason",
"scripts": {
"clean": "bsb -clean-world",
"generate": "node scripts/generate.js && bsrefmt --in-place src/jsonCodec_object.re",
"build": "npm run generate && bsb -make-world",
"watch": "bsb -make-world -w",
"test": "npm run build && jest",
"format": "bsrefmt --in-place src/*.re"
},
"repository": {
"type": "git",
"url": "https://github.com/state-machine-systems/JsonCodec.git"
},
"homepage": "https://github.com/state-machine-systems/JsonCodec#readme",
"bugs": "https://github.com/state-machine-systems/JsonCodec/issues",
"keywords": [
"JSON",
"BuckleScript",
"Reason"
],
"license": "Apache-2.0",
"devDependencies": {
"@glennsl/bs-jest": "0.4.2",
"bs-platform": "3.1.5",
"jest-cli": "^23.1.0"
}
}