-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 914 Bytes
/
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
{
"name": "ES2018",
"version": "1.0.0",
"description": "",
"main": "examples.js",
"scripts": {
"build": "babel src -d lib",
"finally": "npm run build && node ./lib/finally.js",
"regular-expressions": "npm run build && node ./lib/regular-expressions.js",
"rest-properties": "npm run build && node ./lib/rest-properties.js",
"spread-properties": "npm run build && node ./lib/spread-properties.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-generator-functions": "^6.24.1",
"babel-plugin-transform-modern-regexp": "0.0.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"regenerator-runtime": "^0.11.1"
},
"dependencies": {
"bluebird": "^3.5.1"
}
}