-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 769 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 769 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
{
"name": "pure-lambda",
"version": "3.0.1",
"description": "Lambda calculus expression parser and reducer",
"type": "module",
"main": "dist/index.umd.js",
"repository": "https://github.com/414owen/lambda-repl-js",
"author": "Owen Shepherd",
"license": "GPL3",
"private": false,
"module": "dist/index.esm.js",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-strip": "^3.0.4",
"@rollup/plugin-terser": "^0.4.4",
"babel-eslint": "^10.0.1",
"rollup": "^4.20.0",
"webpack": "^4.23.1"
},
"dependencies": {
"@babel/runtime": "^7.1.2"
},
"scripts": {
"build": "rollup -c"
}
}