This repository has been archived by the owner on Jul 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "buble-config-rhino",
"version": "0.1.0",
"description": "A Bublé configuration that transpiles modern JavaScript for Rhino",
"keywords": [
"buble",
"bublé",
"rhino"
],
"homepage": "https://github.com/pastelmind/buble-config-rhino",
"repository": {
"type": "git",
"url": "https://github.com/pastelmind/buble-config-rhino.git"
},
"author": "Ye-hyoung Kang",
"license": "MIT",
"type": "commonjs",
"main": "index.js",
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"types": "index.d.ts",
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc",
"build:esm": "tsc --module ES2015 --declaration false --outDir dist && shx mv dist/index.js index.mjs && shx rm -r dist",
"lint": "eslint .",
"prepublishOnly": "npm run build",
"style": "prettier --check .",
"test": "mocha"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"@types/buble": "^0.20.0"
},
"devDependencies": {
"@types/mocha": "^8.2.2",
"@types/node": "^12.20.12",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"buble": "^0.20.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"mocha": "^8.3.2",
"prettier": "^2.2.1",
"shx": "^0.3.3",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}