-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 984 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
36
37
38
39
40
41
{
"name": "sum-types",
"version": "0.9.4",
"description": "Introduction and eliminiation of sum types (or tagged unions)",
"main": "index.js",
"scripts": {
"prepublish": "babel --out-dir . src",
"test": "eslint src test && mocha test"
},
"files": [
"src",
"index.js",
"caseof-eq.js"
],
"keywords": [
"data",
"functional",
"pattern matching"
],
"author": "Thomas Scholtes",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/geigerzaehler/sum-types.git"
},
"homepage": "https://github.com/geigerzaehler/sum-types",
"dependencies": {
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"eslint": "^3.1.0",
"eslint-config-standard": "^5.3.5",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-standard": "^2.0.0",
"mocha": "^2.5.3"
}
}