-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
50 lines (50 loc) · 1.72 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
{
"name": "babel-plugin-extensible-destructuring",
"version": "4.3.1",
"description": "Babel plugin that enables extensible destructuring as per https://github.com/vacuumlabs/es-proposals",
"author": "Tomas Kulich <tomas.kulich@gmail.com>",
"contributors": [
"Markéta Lisová <themarketka@gmail.com>",
"Marcela Hrdá <marcelka.hrda@gmail.com>"
],
"repository": "vacuumlabs/babel-plugin-extensible-destructuring",
"keywords": [
"babel-plugin",
"destructuring"
],
"main": "lib/index.js",
"module": "es/index.js",
"files": [
"lib",
"es"
],
"license": "BSD-2-Clause",
"scripts": {
"clean": "rm -rf lib; rm -rf node_modules/babel-plugin-extensible-destructuring; rm -rf node_modules/extensible-runtime",
"build-runtime": "cd runtime && npm run build",
"build-this:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir lib --copy-files",
"build-this:es": "cross-env BABEL_ENV=es babel src --out-dir es --copy-files",
"build-this": "npm run clean && npm run build-this:cjs && npm run build-this:es",
"build": "npm run build-runtime && npm run build-this",
"test": "npm run build && npm install && node runtest",
"prepublishOnly": "npm run test"
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@babel/runtime": "^7.5.5",
"babel-plugin-extensible-destructuring": "file:.",
"bluebird": "^3.5.5",
"commander": "^2.20.0",
"cross-env": "^5.2.0",
"extensible-runtime": "file:./runtime",
"file": "^0.2.2",
"immutable": "4.0.0-rc.12",
"mocha": "^5.2.0",
"rimraf": "^2.6.3"
}
}