-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 984 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
{
"name": "snowpack-plugin-toml",
"version": "1.0.1",
"description": "A Snowpack plugin to convert TOML files to ESM.",
"main": "dist/plugin.js",
"module": "dist/plugin.mjs",
"scripts": {
"build": "rollup -c",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/amdg/snowpack-plugin-toml.git"
},
"keywords": [
"snowpack",
"toml"
],
"author": "amdg",
"license": "MIT",
"bugs": {
"url": "https://github.com/amdg/snowpack-plugin-toml/issues"
},
"homepage": "https://github.com/amdg/snowpack-plugin-toml#readme",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@rollup/pluginutils": "^4.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.1.0",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"jest": "^26.6.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.1.3"
}
}