-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 749 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 749 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
{
"name": "paredit.js",
"version": "0.4.0",
"description": "Generic parser and editor for s-expressions.",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"test": "node_modules/mocha/bin/mocha tests/*-test.js"
},
"keywords": [
"paredit",
"lisp",
"clojure",
"code editor",
"programming"
],
"dependencies": {
"ace.improved": ">=0.1.4"
},
"devDependencies": {
"chai": "^1.10.0",
"chai-subset": "^0.3.0",
"concat": "^1.0.0",
"mocha": "^2.0.1",
"uglify-js": "^2.4.16"
},
"bundle": {
"files": [
"index.js",
"lib/util.js",
"lib/reader.js",
"lib/navigator.js",
"lib/editor.js"
]
},
"author": "Robert Krahn",
"license": "MIT"
}