-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
62
63
{
"name": "cumalis-lisp",
"version": "0.6.1",
"description": "A Scheme implementation written in Typescript.",
"keywords": [
"SCHEME",
"LISP",
"R7RS"
],
"homepage": "https://github.com/trb-a/cumalis-lisp#readme",
"bugs": {
"url": "https://github.com/trb-a/cumalis-lisp/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trb-a/cumalis-lisp.git"
},
"license": "MIT",
"author": "Tsunemasa Akasaka <[email protected]>",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/types/src/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prebuild": "yarn test && yarn clean",
"build": "yarn build:js && yarn build:types",
"build:js": "vite build",
"build:types": "tsc --emitDeclarationOnly",
"clean": "rimraf dist",
"lint": "eslint src/**/* --fix",
"prerelease": "yarn build",
"release": "yarn standard-version",
"postrelease": "git push --follow-tags",
"pretest": "yarn lint",
"test": "jest --testPathIgnorePatterns='run.*'",
"test:cov": "yarn test -- --coverage",
"test:run": "esno __tests__/run.ts",
"types:check": "tsc --noEmit",
"start": "yarn vite"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/jquery": "^3.5.6",
"@types/node": "^15.12.4",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"esbuild-jest": "^0.5.0",
"eslint": "^7.29.0",
"eslint-plugin-jest": "^24.3.6",
"esno": "^0.9.1",
"jest": "^27.0.5",
"jquery.terminal": "^2.27.1",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"vite": "^2.5.10"
},
"dependencies": {}
}