-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 787 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 787 Bytes
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
{
"name": "tailored",
"version": "2.7.5",
"description": "Pattern matching library",
"main": "lib/tailored.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"test": "mocha test --recursive --compilers js:babel-register"
},
"keywords": ["pattern-matching", "functional"],
"repository": {
"type": "git",
"url": "https://github.com/elixirscript/tailored.git"
},
"author": "Bryan Joseph <bryanjos@gmail.com>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"chai": "^4.1.0",
"mocha": "^6.0.2",
"rollup": "^1.12.4",
"rollup-plugin-babel": "^3.0.7"
},
"dependencies": {
"erlang-types": "^1.0.1"
}
}