-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 837 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 837 Bytes
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
{
"name": "esone",
"version": "0.0.0",
"description": "esone is a implementation of ECMAScript 1",
"private": true,
"scripts": {
"build": "tsc",
"test": "jest",
"interpret": "node ./src/main.js"
},
"dependencies": {
"fp-ts": "^2.16.9"
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^22.2.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.4",
"typescript": "^5.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ENvironmentSet/esone.git"
},
"keywords": [
"es1",
"ecmascript1"
],
"author": "ENvironmentSet <herryseo1@gmail.com> (https://github.com/ENvironmentSet)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ENvironmentSet/esone/issues"
},
"homepage": "https://github.com/ENvironmentSet/esone#readme"
}