-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
61 lines (61 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "eslisp",
"version": "0.9.0",
"description": "minimal S-expression syntax and macro system for JavaScript",
"main": "./lib",
"scripts": {
"prepare": "make -j all",
"test": "make -j test",
"test-readme": "make -j test-readme",
"test-docs": "make -j test-docs",
"test-browser": "make -j test-browser"
},
"directories": {
"lib": "./lib",
"bin": "./bin",
"doc": "./doc"
},
"bin": {
"eslc": "./bin/eslc"
},
"files": [
"lib",
"bin"
],
"keywords": [
"language",
"compiler",
"lisp",
"macros",
"s-expression",
"javascript"
],
"author": "Anko <[email protected]> (http://an.cyan.io)",
"repository": "anko/eslisp",
"bugs": "https://github.com/anko/eslisp/issues",
"license": "ISC",
"devDependencies": {
"anyify": "^1.0.1",
"browserify": "^16.2.3",
"ecstatic": "^4.1.2",
"livescript": "^1.6.0",
"puppeteer": "^2.1.1",
"rimraf": "^3.0.2",
"source-map": "0.7.3",
"tape": "^4.13.2",
"tests-ex-markdown": "^3.0.0",
"tmp": "0.1.0",
"uuid": "^7.0.2"
},
"dependencies": {
"chalk": "^3.0.0",
"concat-stream": "^2.0.0",
"convert-source-map": "^1.7.0",
"escodegen": "^1.14.1",
"esutils": "^2.0.3",
"esvalid": "1.1.0",
"nopt": "^4.0.3",
"prelude-ls": "^1.1.1",
"sexpr-plus": "^7.0.0"
}
}