-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1018 Bytes
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
{
"name": "serialize-xml",
"version": "0.4.0",
"main": "index.js",
"repository": "https://github.com/olaven/serialize-xml.git",
"author": {
"name": "Olav Sundfør",
"email": "olav@sundfoer.com",
"url": "https://olaven.org"
},
"license": "LGPL-2.1",
"scripts": {
"build:denocode": "deno run --unstable --allow-read --allow-write build.ts",
"build:transpile": "babel ./index.js --out-file ./index.js",
"build": "yarn build:denocode && yarn build:transpile",
"prepare": "yarn build"
},
"babel": {
"presets": [
[
"@babel/preset-env"
]
],
"plugins": [
"@babel/plugin-syntax-dynamic-import",
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
]
]
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.10.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.10.5",
"@babel/preset-env": "^7.10.4"
}
}