-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1020 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
{
"name": "crude-lang-v2",
"version": "1.0.0",
"description": "TypeScript interpreter for CrudeLang (a toy language)",
"main": "index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json && cp std-lib .build -r",
"watch": "mocha -r ts-node/register tests/**/*.spec.ts --watch",
"test": "mocha -r ts-node/register tests/**/*.spec.ts"
},
"keywords": [
"interpreter",
"toy-language"
],
"author": "Claes-Magnus Berg <bergclaesmagnus@gmail.com>",
"license": "ISC",
"engines": {
"node": ">=14.15.0"
},
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"mocha": "^9.1.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/node": "^16.10.5",
"crude-dev-tools": "^1.0.8"
}
}