forked from paldepind/union-type
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·40 lines (40 loc) · 1.1 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
{
"name": "union-type",
"version": "0.4.1",
"description": "Union types for JavaScript",
"main": "union-type.js",
"directories": {
"test": "test"
},
"dependencies": {
"ramda": ">=0.5.x"
},
"devDependencies": {
"babel": "^5.8.21",
"browserify": "^10.2.4",
"mocha": "^2.3.4",
"xyz": "0.5.x"
},
"scripts": {
"build": "browserify -s unionType ./union-type.js -o dist/union-type.js",
"release-major": "xyz --repo [email protected]:paldepind/union-type.git --increment major",
"release-minor": "xyz --repo [email protected]:paldepind/union-type.git --increment minor",
"release-patch": "xyz --repo [email protected]:paldepind/union-type.git --increment patch",
"test": "mocha --compilers js:babel/register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paldepind/union-type-js.git"
},
"keywords": [
"union",
"type",
"adt"
],
"author": "Simon Friis Vindum",
"license": "MIT",
"bugs": {
"url": "https://github.com/paldepind/union-type-js/issues"
},
"homepage": "https://github.com/paldepind/union-type-js#readme"
}