-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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": "js-yaml-import",
"version": "1.0.3",
"description": "Allows import files in YAML.",
"main": "dist/js-yaml-import.cjs.js",
"module": "dist/js-yaml-import.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/js-yaml-import.git"
},
"keywords": [
"YAML",
"Import"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/js-yaml-import/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/js-yaml-import#readme",
"dependencies": {
"js-yaml": "^3.14.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-babel": "^5.2.1",
"@rollup/plugin-commonjs": "^16.0.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"babel-jest": "^26.6.3",
"babel-plugin-lodash": "^3.3.4",
"jest": "^26.6.3",
"rollup": "^2.33.3"
}
}