-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.47 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
{
"name": "@cicada-lang/lambda",
"version": "0.3.1",
"repository": "github:cicada-lang/lambda",
"type": "module",
"main": "./lib/index.js",
"files": [
"src",
"lib"
],
"bin": {
"lambda": "bin/lambda.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"test:node": "node --test",
"test:lang:tests": "test-runner snapshot './bin/lambda.js run' 'docs/tests/**/*.scm' --exclude 'docs/tests/**/*.error.scm'",
"test:lang:examples": "test-runner snapshot './bin/lambda.js run' 'docs/examples/**/*.scm' --exclude 'docs/examples/**/*.error.scm'",
"test:lang:tests-error": "test-runner snapshot-error './bin/lambda.js run' 'docs/tests/**/*.error.scm'",
"test:lang:examples-error": "test-runner snapshot-error './bin/lambda.js run' 'docs/examples/**/*.error.scm'",
"test:lang": "npm run test:lang:tests && npm run test:lang:tests-error && npm run test:lang:examples && npm run test:lang:examples-error",
"test": "npm run test:node && npm run test:lang",
"format": "prettier src docs --write"
},
"dependencies": {
"@cicada-lang/framework": "^0.2.0",
"@xieyuheng/command-line": "^0.1.3",
"@xieyuheng/ty": "^0.3.1",
"dedent": "^1.5.3",
"regexp-match-indices": "^1.0.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@xieyuheng/test-runner": "^0.2.10",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"typescript": "^5.7.2"
},
"license": "GPL-3.0-or-later"
}