-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (35 loc) · 913 Bytes
/
package.json
File metadata and controls
36 lines (35 loc) · 913 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
{
"author" : "Yosbel Marin",
"name" : "ramdascript",
"version" : "0.7.0",
"license" : "MIT",
"description" : "JavaScript in the Ramda way",
"repository" : "https://github.com/yosbelms/ramdascript.git",
"main": "./src/ramdascript",
"preferGlobal": true,
"bin": {
"ram": "./bin/ram"
},
"scripts": {
"test": "node ./scripts/test.js",
"parser": "node ./scripts/parser.js",
"browserify": "node ./scripts/browserify.js > ./browser.js",
"all": "npm run parser && npm run browserify && npm run test"
},
"devDependencies": {
"jasmine": "2.3.2",
"jison": "0.4.15"
},
"keywords": [
"ramda",
"ramdascript",
"s-expression",
"clojure",
"lisp",
"language",
"functional"
],
"dependencies": {
"ramda": "^0.25.0"
}
}