-
Notifications
You must be signed in to change notification settings - Fork 111
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 917 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 917 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
44
{
"name": "jscl",
"version": "0.9.0-alpha.0",
"description": "A Common Lisp implementation for Javascript",
"main": "dist/jscl.js",
"workspaces": [
"web"
],
"files": [
"dist/jscl.js",
"dist/jscl-node.js",
"dist/jscl-web.js"
],
"type": "commonjs",
"bin": {
"jscl": "./dist/jscl-node.js"
},
"directories": {
"test": "tests"
},
"scripts": {
"test": "./run-tests.sh",
"serve": "serve dist",
"prettier": "prettier --write .",
"prettier:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscl-project/jscl.git"
},
"keywords": [
"lisp",
"compiler"
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/jscl-project/jscl/pulls"
},
"homepage": "https://github.com/jscl-project/jscl#readme",
"devDependencies": {
"prettier": "^3.8.0",
"serve": "^14.2.4"
}
}