forked from vacuumlabs/babel-plugin-extensible-destructuring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.75 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
{
"name": "babel-plugin-extensible-destructuring",
"version": "4.3.0",
"description": "Babel plugin that enables extensible destructuring as per https://github.com/vacuumlabs/es-proposals",
"author": "Tomas Kulich <[email protected]>",
"contributors": [
"Markéta Lisová <[email protected]>",
"Marcela Hrdá <[email protected]>"
],
"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",
"prepare": "npm run build"
},
"dependencies": {
"extensible-runtime": "file:./runtime"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-external-helpers": "^7.0.0",
"@babel/preset-env": "^7.1.6",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.5",
"babel-plugin-extensible-destructuring": "file:.",
"bluebird": "^3.2.2",
"commander": "^2.20.0",
"cross-env": "^5.2.0",
"file": "^0.2.2",
"immutable": "4.0.0-rc.12",
"mocha": "^5.2.0",
"rimraf": "^2.6.2"
}
}