-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 980 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
41
42
43
44
{
"name": "@fujaba/fulib-yaml-ts",
"version": "1.1.1",
"description": "Typescript implementation of the fulib yamler",
"author": "Sebastian Copei <[email protected]>",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/fujaba/fulibYamlTS"
},
"scripts": {
"build": "tsc && tslint -c tslint.json -p tsconfig.json",
"test": "jest"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"dependencies": {
"@types/node": "^14.0.18"
},
"devDependencies": {
"@types/jest": "^26.0.4",
"jest": "^26.1.0",
"ts-jest": "^26.1.1",
"tslint": "^6.1.2",
"typescript": "^3.9.6"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"testEnvironment": "node"
},
"publishConfig": {
"access": "public"
}
}