-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
43 lines (43 loc) · 1.11 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
{
"name": "reason-promise",
"version": "1.1.5",
"description": "Light and type-safe binding to JS promises",
"keywords": [
"BuckleScript",
"reason",
"promise",
"async"
],
"homepage": "https://github.com/aantron/promise",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/aantron/promise.git"
},
"bugs": {
"url": "https://github.com/aantron/promise/issues"
},
"author": {
"name": "Anton Bachin",
"email": "[email protected]",
"url": "https://github.com/aantron"
},
"devDependencies": {
"bs-platform": ">= 7.3.1",
"webpack": "^4.0.0",
"webpack-cli": "^3.0.0"
},
"scripts": {
"build": "bsb -make-world",
"watch": "bsb -w -make-world",
"clean": "bsb -clean-world && rm -rf lib promise-* *.tar.gz *.tgz _release",
"very-clean": "rm -rf node_modules _esy _opam package-lock.json",
"test": "bsb -make-world && node lib/js/test/test_main.js",
"benchmark": "bsb -make-world && node lib/js/test/js/benchmark.js"
},
"files": [
"src/js/promise.rei",
"src/js/promise.re",
"bsconfig.json"
]
}