forked from xodio/hm-def
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 900 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
{
"name": "hm-def",
"version": "0.3.2",
"description": "Runtime type checking with Hindley Milner signatures",
"repository": "https://github.com/xodio/hm-def",
"main": "dist/index.js",
"scripts": {
"build": "babel src/ -d dist/",
"lint": "eslint src/ test/",
"test": "mocha test/**/*.spec.js"
},
"keywords": [],
"author": "XOD LLC",
"license": "MIT",
"dependencies": {
"hm-parser": "^0.1.5",
"ramda": "^0.24.1",
"ramda-fantasy": "^0.8.0",
"sanctuary-def": "^0.14.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"mocha": "^3.2.0",
"sanctuary-type-classes": "^7.1.1"
}
}