This repository has been archived by the owner on Feb 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
66 lines (66 loc) · 1.74 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "immutable-re",
"version": "0.0.15",
"description": "Persistent immutable collections for Reason",
"main": "lib/js/src/immutable.js",
"homepage": "https://facebookincubator.github.io/immutable-re/",
"bugs": "https://github.com/facebookincubator/immutable-re/issues",
"keywords": [
"reason",
"reasonml",
"ocaml",
"immutable"
],
"author": {
"name": "Dave Bordoley",
"email": "bordoley@gmail.com"
},
"contributors": [
{
"name": "Dave Bordoley",
"email": "bordoley@gmail.com"
}
],
"license": "BSD-3-Clause",
"files": [
"bsconfig.json",
"CONTRIBUTING.md",
"LICENSE.txt",
"lib/js/src",
"PATENTS.txt",
"README.md",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/facebookincubator/immutable-re.git"
},
"dependencies": {
"bs-platform": "^2.2.1"
},
"devDependencies": {
"immutable": "^3.8.1",
"opam_of_packagejson": "*",
"reunit": "./reUnit"
},
"opam": {
"dependencies": {
"reason": "build & >= \"3.0.3\""
},
"installPath": "_build/src",
"libraryName": "immutable",
"mainModule": "Immutable"
},
"scripts": {
"start": "bsb -make-world -w",
"clean": "bsb -clean-world",
"build": "bsb -make-world",
"deploy-docs": "git subtree push --prefix docs origin gh-pages",
"setup-global-env": "npm install -g git://github.com/reasonml/reason-cli.git",
"opam-init": "opam init",
"opam-install-mac": "brew update && brew install opam",
"opam-pin": "eval $(opam config env) && opam update && opam switch 4.02.3 && opam pin add -y immutable .",
"package-opam": "opam_of_packagejson -gen-meta -gen-opam -gen-install package.json",
"release": "node release.js"
}
}