forked from sumwatshade/jest-transform-yaml
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.41 KB
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
54
55
56
{
"name": "jest-transform-yaml",
"version": "1.0.0",
"description": "Transforms for YAML within Jest",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": "^12.0.0 || ^14.0.0 || ^16.0.0 || ^17.0.0"
},
"keywords": [
"jest",
"transformer",
"jest-transform",
"yaml",
"testing"
],
"repository": "git@github.com:sumwatshade/jest-transform-yaml.git",
"author": "lshadler <lshadler13@gmail.com>",
"license": "MIT",
"devDependencies": {
"@auto-it/all-contributors": "10.30.0",
"@auto-it/first-time-contributor": "10.30.0",
"@auto-it/git-tag": "10.30.0",
"@auto-it/npm": "10.30.0",
"@auto-it/released": "10.30.0",
"@jest/types": "27.0.6",
"@tsconfig/recommended": "^1.0.1",
"@types/js-yaml": "^4.0.2",
"@types/node": "16.11.10",
"@typescript-eslint/eslint-plugin": "4.29.1",
"@typescript-eslint/parser": "4.29.1",
"auto": "10.30.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.24.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"source-map": "0.7.3",
"typescript": "4.3.5"
},
"dependencies": {
"js-yaml": "4.1.0"
},
"scripts": {
"build": "tsc --outDir lib",
"format": "prettier src/**/*.ts",
"lint": "eslint --ext .ts src",
"test": "echo 'no tests yet!'",
"release": "auto shipit"
},
"auto": {
"plugins": [
"npm"
]
}
}