-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 884 Bytes
/
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
{
"name": "l",
"version": "0.2.05",
"description": "The L Programming Language",
"author": "Brendan Berg <brendan@berg.industries>",
"main": "lib/l.js",
"repository": {
"type": "git",
"url": "https://github.com/brendanberg/l.git"
},
"scripts": {
"build": "rm -f src/scanner.js && pegjs -o src/scanner.js src/scanner.pegjs",
"test": "node_modules/mocha/bin/mocha test/",
"metal": "src/repl.js"
},
"bin": {
"metal": "src/repl.js"
},
"dependencies": {
"config": "^2.0.1",
"immutable": "^3.7.6",
"loglevel": "^1.6.1",
"punycode": "^2.1.0"
},
"devDependencies": {
"chai": "^2.3.0",
"chai-immutable": "^1.6.0",
"mocha": "^10.0.0",
"mocha-clean": "^1.0.0",
"mocha-testcheck": "^0.1.2",
"pegjs": "^0.10.0"
},
"directories": {
"test": "test/"
},
"preferGlobal": true,
"license": "MIT"
}