This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
forked from bublejs/buble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.66 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@jammercore/buble",
"version": "0.20.1",
"description": "The blazing fast, batteries-included ES2015 compiler",
"main": "dist/buble.cjs.js",
"module": "dist/buble.es.js",
"browser": {
"dist/buble.cjs.js": "./dist/buble-browser.cjs.js",
"dist/buble.es.js": "./dist/buble-browser.es.js"
},
"unpkg": "dist/buble-browser-deps.umd.js",
"files": [
"bin",
"src",
"dist",
"register.js",
"README.md"
],
"scripts": {
"build": "rollup -c",
"test": "mocha test/test.js",
"pretest": "npm run build",
"test:register": "echo '\"use strict\";' | cat - src/program/Node.js | sed 's/export default/module.exports =/' | node -r ./register.js",
"test:full": "npm run test && npm run test:register && npm run lint",
"test:bundlers": "npm run test:bundlers:rollup && npm run test:bundlers:webpack && npm run test:bundlers:parcel",
"test:bundlers:rollup": "test \"$(npx rollup -c test/bundlers/rollup.config.js | node)\" = 'var x = 4'",
"test:bundlers:webpack": "cd test/bundlers && mkdir -p node_modules && npm i webpack && node webpack.js && test \"$(node dist/main.js)\" = 'var x = 4'",
"test:bundlers:parcel": "cd test/bundlers && mkdir -p node_modules && npm i parcel && npx parcel build index.js --no-cache && test \"$(node dist/index.js)\" = 'var x = 4'",
"prepublish": "npm test",
"lint": "eslint bin/ src/ test/test.js test/utils/ register.js rollup.*.js scripts/"
},
"bin": {
"buble": "./bin/buble"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jammercore/buble.git"
},
"publishConfig": {
"access":"public"
},
"keywords": [
"javascript",
"transpilation",
"compilation",
"esnext",
"es2015",
"es2017",
"es6",
"es7"
],
"author": "Rich Harris",
"license": "MIT",
"bugs": {
"url": "https://github.com/bublejs/buble/issues"
},
"homepage": "https://github.com/bublejs/buble#README",
"devDependencies": {
"console-group": "^0.3.3",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.1.1",
"rimraf": "^3.0.2",
"rollup": "^2.2.0",
"@rollup/plugin-buble": "^0.21.1",
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"source-map": "0.6.1",
"source-map-support": "^0.5.16",
"test262": "git+https://github.com/tc39/test262.git#4f1155c566a222238fd86f179c6635ecb4c289bb",
"test262-stream": "^1.3.0"
},
"dependencies": {
"acorn": "^6.4.1",
"acorn-dynamic-import": "^4.0.0",
"acorn-jsx": "^5.2.0",
"chalk": "^2.4.2",
"magic-string": "^0.25.7",
"minimist": "^1.2.5",
"regexpu-core": "4.5.4"
}
}