-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1011 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
39
40
{
"name": "lisp-ts",
"version": "1.0.0",
"description": "Lisp implementation written with TypeScript",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "yarn test && tsc -b ./tsconfig.build.json",
"start": "ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phen0menon/lisp-ts.git"
},
"keywords": [
"lisp",
"typescript"
],
"author": "Rolan Ibragimov (phen0menon)",
"license": "ISC",
"bugs": {
"url": "https://github.com/phen0menon/lisp-ts/issues"
},
"homepage": "https://github.com/phen0menon/lisp-ts#readme",
"devDependencies": {
"@types/eslint": "7.2.6",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.4",
"@typescript-eslint/eslint-plugin": "4.14.2",
"@typescript-eslint/parser": "4.14.2",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"ts-jest": "^27.1.2",
"ts-node": "9.1.1",
"typescript": "^4.5.4"
},
"dependencies": {
"eslint": "^8.5.0"
}
}