-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 855 Bytes
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
{
"name": "es6-learn",
"version": "1.0.0",
"description": "es6-learn",
"main": "index.js",
"scripts": {
"start": "",
"prepublish": "git add .",
"publish": "git commit",
"postpublish": "git push",
"babel": "npx babel src --out-dir lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/feigehenmang/es6-learn.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/feigehenmang/es6-learn/issues"
},
"homepage": "https://github.com/feigehenmang/es6-learn#readme",
"dependencies": {
"@babel/polyfill": "^7.6.0",
"core-js": "3"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-transform-arrow-functions": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"cross-env": "^6.0.3"
}
}