-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.1 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
{
"name": "emojicore",
"version": "0.0.1",
"description": "emojicore is an interpreted toy programming language with two basic primitives, ints and ents.",
"main": "index.js",
"scripts": {
"test": "jest",
"ts:build": "rm -rf build/; tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/phea/emojicore.git"
},
"keywords": [
"programming",
"language"
],
"author": "Phea Duch",
"license": "MIT",
"bugs": {
"url": "https://github.com/phea/emojicore/issues"
},
"homepage": "https://github.com/phea/emojicore#readme",
"dependencies": {
"@types/node": "^18.11.18",
"@types/sprintf-js": "^1.1.2",
"sprintf-js": "^1.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"eslint-plugin-import": "^2.27.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3"
}
}