-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 950 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 950 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
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "bean-js",
"version": "1.3.3",
"description": "An esoteric byte-encoded code-golfing language derived from JavaScript",
"main": "./dst/bean.min.js",
"bin": {
"bean": "./bin/bean.js"
},
"man": "./man/bean.1",
"repository": {
"type": "git",
"url": "https://github.com/patrickroberts/bean.git"
},
"engines": {
"node": ">=6.9.2",
"npm": "^4.0.0"
},
"scripts": {
"prepublishOnly": "gulp"
},
"keywords": [
"esoteric",
"language",
"golf",
"compiler",
"interpreter"
],
"author": "Patrick Roberts",
"license": "MIT",
"devDependencies": {
"babel-preset-es2015": "^6.22.0",
"babelify": "^7.3.0",
"babylon": "^6.15.0",
"browserify": "^13.3.0",
"gulp": "^3.9.1",
"gulp-sourcemaps": "^2.4.0",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.8",
"require-dir": "^0.3.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}