-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.49 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
{
"name": "@x-spacy/environment",
"version": "0.0.0",
"description": "Environment module used by X-Spacy.",
"license": "MIT",
"private": false,
"main": "dist/environment/implementations/Environment.js",
"types": "@types/index.d.ts",
"author": {
"name": "Vinícius Gutierrez da Silva Rocha",
"email": "srgutyerrez@gmail.com",
"url": "https://github.com/gutyerrez"
},
"repository": {
"type": "git",
"url": "git+https://github.com/x-spacy/environment.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"tag": "latest"
},
"engines": {
"node": "v20.x.x"
},
"scripts": {
"build": "sh scripts/build.sh",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@x-spacy/exceptions": "^1.4.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.8",
"@x-spacy/eslint-config": "^1.26.8",
"eslint": "^9.14.0",
"typescript": "^5.7.2"
},
"exports": {
".": "./dist/environment/implementations/Environment.js",
"./environment/implementations/Environment": "./dist/environment/implementations/Environment.js",
"./exceptions/EnvironmentNotFoundException": "./dist/exceptions/EnvironmentNotFoundException.js"
}
}